我认为拥有一个索引页面(在我的例子中是 index.xhtml)是一个很好的做法。我想在索引页面上传递一些操作(例如在 struts 中:<c:redirect url="list.do" />
并且我转到没有任何链接和按钮的 struts 操作类)我知道如果我想使用导航,我应该使用 commandLink-s 或按钮)。我可以使用 onclick javascript 函数编写<h:commandButton>
,但我不认为这是最好的选择。
我对 JSF 完全陌生(使用 JSF 2.0),我需要你的建议。从索引页面重定向到控制器中的操作的最佳实践是什么?
///新版本
<!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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<f:view>
<ui:insert name="metadata"/>
<f:viewParam name="action" value="listItems.xtml"/>
<f:event type="preRenderView" listener="#{yourBean.methodInManagedBean}" />
<h:body></h:body>
</f:view>
</html>
public class ForwardBean {
private String action;
// getter, setter
public void navigate(PhaseEvent event) {
FacesContext facesContext = FacesContext.getCurrentInstance();
String outcome = action;
facesContext.getApplication().getNavigationHandler().handleNavigation(facesContext, null, outcome);
}
}