我想使用导航规则从一个网页导航到另一个网页并获取 facesmessage :
No navigation case match for viewId /content/diagram.xhtml, action null and outcome edit_weekedit
我的面孔配置看起来像:
<navigation-rule>
<from-view-id>/content/diagram.xhtml</from-view-id>
<navigation-case>
<from-outcome>edit-weekedit</from-outcome>
<to-view-id>/edit/editnotice.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
我的导航方法是:
public void changeListener(AjaxBehaviorEvent event) {
SelectOneMenu source = (SelectOneMenu) event.getSource();
if (source.getValue().equals("number_of_node")) {
FacesContext facesContext = FacesContext.getCurrentInstance();
String outcome = "edit_weekedit"; // Do your thing?
facesContext.getApplication().getNavigationHandler().handleNavigation(facesContext,null, outcome);
}
}
我使用 apache myfaces 2.0。
这里有什么问题?
最好的问候投票