2

我是Icefaces的新手。我想知道如何使用onload方法,或者我想在页面加载时调用一些方法。

4

1 回答 1

0

在您的 JSF 页面中:

<f:event type="preRenderView"
        listener="#{yourManagedBean.yourMethod()}" />

在 YourManagedBean.java 中:

public void yourMethod() {
   ...
}
于 2013-01-07T10:59:21.827 回答