Is it possible to have multiple validators for a single entry in JSF 2.0? For example, let's say that I write the username and the username must contain 8 characters. And if OK, check to see if the username is in the database.
<ice:inputText id="username" value="#{createClient.username}" maxlength="15">
<-- something like this -->
<f:validator validatorId="usernameValidator" validatorId="usernameExistValidator" />
</ice:inputText>
<ice:message for="username" />
source
share