使用JSF2和richFaces4在页面加载上执行bean操作

时间:2011-12-17 11:26:36

标签: jsf-2 richfaces

我正在处理JSF2richFaces4应用程序,我想在加载xhtml个{{1}}视图时执行支持bean操作。

感谢。

1 个答案:

答案 0 :(得分:1)

如果你创建了一个bean @ViewScoped,那么在渲染引用它的xhtml视图时,一个带有@PostConstruct注释的方法将被调用一次。

例如:

@ManagedBean
@ViewScoped
public class Foo {
  @PostConstruct
  public void onPageLoad() {
  ...
  }
}


<h:outputText value=#{foo.property}"/>