JSF Bean Validationで文字列値を変換するために、どのコンバーターが使用されますか?使用する数値<f:convertNumber>
や日付の場合と同様に、を使用します<f:convertDataTime>
。私のコードスニペストは次のとおりです。JSFページ:
<h:inputText id="Name" label="Name" value="#{employee.eName}"/>
<h:message for="Name" styleClass="errorMessages"/>
Beanクラス:
public class Employee implements Serializable{
@NotNull @Size(min = 3, max = 30)
String eName;
}