欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jsf之标准验证器

程序员文章站 2024-03-13 16:22:51
...

Jsf提供了3个标准验证器:<f:validateLength/>,<f:validateLongRange/>,<f:validateDoubleRange/>。

下面分别做说明:

 

1.required

<!-- required:true,即必须输入,不能为null或空串。 -->
 			请输入姓名:<h:inputText value="#{user.name }" required="true" id="name" requiredMessage="请输入用户名"></h:inputText>
 			<h:message for="name"></h:message><br>


2.f:validateLength

请输入密码:<h:inputSecret value="#{user.password }" id="password" requiredMessage="请输入密码" required="true">
 				<!-- 密码长度6到16位 -->
 				<f:validateLength minimum="6" maximum="16"></f:validateLength>
 			</h:inputSecret>
 			<h:message for="password"></h:message><br>


3.f:validateLongRange

请输入年龄:<h:inputText value="#{user.age }" required="true" id="age">
 				<!-- 年龄在1到100岁之间 -->
 				<f:validateLongRange minimum="1" maximum="100"></f:validateLongRange>
 			</h:inputText>
 			<h:message for="age"></h:message><br>


4.f:validateDoubleRange

输入身高:<h:inputText value="#{user.height }" required="true" id="height">
 				<f:validateDoubleRange minimum="75.00" maximum="250.00"></f:validateDoubleRange>
 			</h:inputText>
 			<h:message for="height"></h:message><br>


5.使用bean中的字段验证:

<h:inputText value="#{user.name }" required="true" id="name2">
     <f:validateLength minimum="#{user.minLength }" maximum="#{user.maxLength }"></f:validateLength>
    </h:inputText>
    <h:message for="name2"></h:message><br>

 

如果设置了required为true,输入参数为空,则其他校验器不会被调用。

如果没有设置required为true,则其他校验器会被调用,但是需要处理可能的null或空串的情况。

相关标签: jsf