Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Java 新手,正在寻找以下问题的答案。我正在使用 JSF 构建一个网站,其中我使用的是 Richfaces 菜单栏(panelMenuGroup 和 panelMenuItem)。我想针对菜单的每个项目在菜单栏前面显示一个新页面(即,当我单击菜单项时,我会在菜单栏前面打开一个新页面)。有什么解决办法吗?
谢谢。
您可以创建一个h:commandLink并在操作上调用相应 bean 的方法,该方法返回所需的页面
h:commandLink
pulic String welcome(){ .. return "\welcome.xhtml"; }