我正在处理JSF2
和richFaces4
应用程序,我想在加载xhtml
个{{1}}视图时执行支持bean操作。
感谢。
答案 0 :(得分:1)
如果你创建了一个bean @ViewScoped
,那么在渲染引用它的xhtml视图时,一个带有@PostConstruct
注释的方法将被调用一次。
例如:
@ManagedBean
@ViewScoped
public class Foo {
@PostConstruct
public void onPageLoad() {
...
}
}
<h:outputText value=#{foo.property}"/>