我是 JSF 和 RichFaces 的新手。我有一个按钮应该调用 bean 上的方法。当我使用
<h:commandButton action="#{loginBean.userLogin}" value="Login" />
它工作正常,但是当我点击
<a4j:commandButton action="#{loginBean.userLogin}" value="Login" />
什么都没发生。
我的豆子代码:
public class LoginBean {
@Size(min = 2, max = 20, message = "Must be betwen 2 and 20 chars")
private String login;
@Size(min = 1, message = "Please Enter your password")
private String password;
//getters and setters
public String userLogin() {
//user login code
}
}
我的 JSP 页面代码:
<body>
<f:view>
<div >
<h:form id="loginForm">
<h:panelGrid columns="3">
<h:outputLabel for="login" value="Login:" />
<h:inputText id="login" value="#{loginBean.login}" >
</h:inputText>
<rich:message for="login" />
<h:outputLabel for="password" value="Password:" />
<h:inputSecret id="password" value="#{loginBean.password}" />
<rich:message for="password" />
</h:panelGrid>
<div>
<h:commandButton action="#{loginBean.login}" value="Login" />
<a4j:commandButton action="#{loginBean.login}" value="Login" />
</div>
<div>
<a href="<%= request.getContextPath() %>/registration.jsf">Registration</a>
</div>
</h:form>
</div>
</f:view>
</body>
如您所见,我什至添加了两个按钮。一个工作正常,第二个不做任何事情。
UPD:一开始我没有使用 RichFaces,我的应用程序运行良好。所以我猜导航规则等都很好。不起作用的是我刚刚添加的 a4j:commandButton。
UPD2:这是我的 web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>webappsaichuk</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>