0

我用post构造方法(使用@PostContruct)编写了一个托管bean,但没有调用该方法。我将 liferay liferay-portal-6.1.2-ce-ga3 与 Jboss 7.1.1 和 Icefaces 3.0 一起使用。有人可以帮我解决这个问题吗?



    @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(); } }
4

1 回答 1

0

首先,确保您的DetalleVaPortletBean对象确实是通过检查控制台输出构建的,并从 System.out.println(this);

构造函数中的更多打印输出可能会有所帮助,例如System.out.println("DetalleVaPortletBean CTOR");

于 2014-02-28T15:24:10.143 回答