我正在使用带有primefaces的jsf。根据用户在侧面板菜单中的选择,我成功地单独更新了中心面板。但是没有一个功能起作用。
换句话说:
我有一个包含应该出现在所有页面中的所有菜单的 xhtml。我正在更新中心面板。但是无法识别在中心面板中更新的页面的相应托管 bean。
有什么建议么?
更新:代码
public void show(){
String node=selectedNode.toString();
List<Pages> pagesList=loginsessinbean.findPageByTitle(node);
linkValue = pagesList.get(0).getPagePath();
System.out.println("Selection=="+linkValue); displayModule();
}
public String displayModule() {
String url="localhost:8080/MPCS-war/faces"+linkValue;
System.out.println("URL ---"+url);
return url;
}