I have a JSF 2.0 with mojara EL 2.2 on tomcat 6 and had it working for some time now during the development. I recently added a form with a command button for login (basic stuff) which checks the username and password in the managed bean at the action doLogin.
public String doLogin(){
FacesMessage message = null;
if((username.equals("user"))&&(password.equals("pass")))
return "testpage.xhtml";
else
message = new FacesMessage("Invalid username or password");
FacesContext.getCurrentInstance().addMessage(null, message);
return null;
}
问题在于它经过 DoLogin 并返回 < strug > " testpage. xhtml" 之后, 同样的页面会被显示。 尽管在 WebContent 的根部里有所有 xhtml s 文件 。
在Tomcat的控制台,我得到:
JSF的EL解脱者没有在JSP集装箱上登记。
使用EL2.2的通过参数工作正常。
我用JSF 和面板。