从Controller获取验证消息

时间:2013-06-04 12:46:03

标签: validation jsf controller

我正在使用JSF 2.这是我的控制器。

package com.acc.validations;

import java.io.Serializable;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean(name="user")
@SessionScoped
public class Controller implements Serializable{

private static final long serialVersionUID = 1L;
String name;
String password;

public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public String getPassword() {
    return password;
}
public void setPassword(String password) {
    this.password = password;
}

private String checkUser(String name,String password) {

    if(("admin".equalsIgnoreCase(name)) && ("admin".equalsIgnoreCase(password))){
        return "result";
    }else{
        /*System.out.println("Enter Valid details");*/
        FacesMessage msg = new FacesMessage("Authentication Failed.","Authentication Failed");
        msg.setSeverity(FacesMessage.SEVERITY_ERROR);
        return null;
    }
}
public void execute(){
    checkUser(name, password);
}

}

这是我的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>

<h1>Custom validator in JSF 2.0</h1> 

  <h:form >

    <h:panelGrid columns="3">

     User Name:

      <h:inputText  id="username" value="#{user.name}" 
        required="true" >
        <f:validateLength minimum="4" maximum="15" />
      </h:inputText>

      <h:message for="username" style="color:red" />
     Password : 
        <h:inputSecret id="password" value="#{user.password}" 
         required="true" >
        <f:validator validatorId="com.acc.validations.PasswordValidator" />
      </h:inputSecret>
    </h:panelGrid>

    <h:commandButton value="Submit"  action="#{user.execute}" />


        </h:form>

   </h:body>
 </html>

我的要求是,如果用户输入用户名和密码为“admin”,控件应该重定向到result.xhtml,否则它应该在我在控制器中写入的facesContext中显示消息。 这是我的结果.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">
<h:body>
 <h1>Custom validator in JSF 2.0</h1>
  <h:panelGrid columns="2">
    Welcome to User : 
    <h:outputText value="#{user.name}" />
  </h:panelGrid>
 </h:body>
 </html>

我无法呈现result.xhtml eventHough我输入admin作为用户名和密码,而且当我输入错误的凭据时我也没有收到任何消息。而且我也没有收到任何错误。请你帮助我在这方面,为了按照我的要求工作。

1 个答案:

答案 0 :(得分:0)

你试过这样的事吗: 在.xhtml中

<p:inputText id="j_username" required="true" value="#{login.nomLogin}" />

在你的&#34;控制器&#34;

@ManagedBean(name="login")
@SessionScoped

public class LoginBean implements Serializable {


        private String nomLogin;
        private Boolean isConnected = false;
        //Getter and Setter for this one

 public String checkValidUser(){
 //To see the value of login
 System.out.println("Login a pour valeur :"+ getNomLogin());
if((getNomLogin().equals("admin")== true){
 isConnected =true;
 return "ok";
}}}

这是我的登录工作方式,您可以使用布尔值做同样的事情,它取决于您的需要。

我认为你可以测试价值,如果你有类似的东西:  你可以测试一下它的勇气,例如我的菜单是隐藏的,如果有人连接并显示管理员是否已连接:

<p:panel id="HidePanel" header="Menu caché" rendered="#{login.isConnected == 'true'}"  />