嗨有没有办法在h:outputLink
中调用backing bean方法感谢 Sunny Mate
答案 0 :(得分:2)
请改用h:commandLink。
<h:commandLink id="next" action="#{courseBean.submit}">
<h:outputText value="Next Page »" />
</h:commandLink>
生成一个超链接,在单击时触发操作。
答案 1 :(得分:0)
只需执行与页面关联的请求范围支持bean的构造函数中的代码。
public class Bean {
public Bean() {
// Do your thing here.
}
}