广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州Java中的JSF验证要求是什么?_北大青鸟IT软件学校

作者:邓华发布时间:2021-04-28分类:Java技术浏览:854


导读:Java中的JSF验证要求是什么?最近惠州北大青鸟很多学员都在问这个问题,那么下面惠州北大青鸟学术部老师给大家解答一下这个问题。

Java中的JSF验证要求是什么?最近惠州北大青鸟很多学员都在问这个问题,那么下面惠州北大青鸟学术部老师给大家解答一下这个问题。

以下代码显示如何根据需要标记字段。

实例

下面的代码来自UserBean.java。

package cn.w3cschool.common;

import java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;

@ManagedBean(name="user")
@SessionScopedpublic class UserBean implements Serializable{
 
 String password;
 String confPassword;  
 public String getPassword() {
   return password;
 }  public void setPassword(String password) {
   this.password = password;
 }  public String getConfPassword() {
   return confPassword;
 }  public void setConfPassword(String confPassword) {
   this.confPassword = confPassword;
 }

}

以下代码来自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>
   <h:panelGrid columns="2">
   Password :  <h:outputText value="#{user.password}" />
   Confirm Password :  <h:outputText value="#{user.confPassword}" />
   </h:panelGrid>
     
   </h:body>
</html>

以下代码来自demo.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">
   <h:body>
   <h:form>
     <h:panelGrid columns="3">
       Enter your password :
       <h:inputSecret id="password" value="#{user.password}"
         size="20" required="true"
         label="Password" />
       <h:message for="password" style="color:red" />
       Enter your password again :
       <h:inputSecret id="confPassword" value="#{user.confPassword}"
         size="20" required="true"
         label="Confirm Password">
         <f:validateRequired />  
       </h:inputSecret>
       <h:message for="confPassword" style="color:red" />
     </h:panelGrid>
     <h:commandButton value="Submit" action="result" />
   </h:form>
   </h:body>
</html>

想了解更多关于Java的资讯,可以来惠州北大青鸟新方舟校区了解一下。

java3.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表