0
我用post構造方法(使用@PostContruct)編寫了一個託管bean,但該方法沒有被調用。我使用了帶有Jboss 7.1.1和Icefaces 3.0的liferay liferay-portal-6.1.2-ce-ga3。有人能幫我解決這個問題嗎?Post Construct不叫
@SessionScoped
@ManagedBean
public class DetalleVaPortletBean extends BackingPortletUI {
private static final long serialVersionUID = -7127465434575796794L;
public DetalleVaPortletBean() {
try {
System.out.println(this);
} catch (Exception e) {
error(e);
}
}
@PostConstruct
public void postConstruct(){
adicionarPortletPrincipal();
}
}
這是一個Spring配置,我沒有使用Spring – gu3rr3ro