<f:validateLongRange>
标签用于验证特定范围内的长值。
以下代码显示如何使用<f:validateLongRange>
标记 -
<f:validateLongRange minimum="5" maximum="200" />
属性 | 说明 |
---|---|
minimum | 在可选范围内最小长度值 |
maximum | 在可选范围内最大长度值 |
打开 NetBeans IDE 创建一个Web工程:ValidateIntRange,其目录结构如下所示 -
创建以下文件代码,文件:index.xhtml 的代码内容如下所示 -
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:c="http://java.sun.com/jsp/jstl/core" > <h:body> <h:form> <h:panelGrid columns="3"> Enter your age : <h:inputText id="age" value="#{user.age}" size="10" required="true" label="Age" > <f:validateLongRange maximum="10" minimum="1" /> </h:inputText> <h:message for="age" style="color:red" /> </h:panelGrid> <h:commandButton value="Submit" action="result" /> </h:form> </h:body> </html>
文件:result.xhtml 的代码内容如下所示 -
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:c="http://java.sun.com/jsp/jstl/core" > <h:body> Age : <h:outputText value="#{user.age}" /> </h:body> </html>
文件:User.java 的代码内容如下所示 -
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.zyiz; /** * * @author Maxsu */ import java.io.Serializable; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean(name = "user") @SessionScoped public class User implements Serializable { int age; public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
右键运行工程:ValidateIntRange,如果没有任何错误,打开浏览器访问:
http://localhost:8084/ValidateIntRange/
应该会看到以下结果 -
简单写入一些信息(大于10),然后提交 -