在JSF托管bean的构造函数中访问会话bean数据

时间:2013-03-15 08:36:05

标签: jsf-2 managed-bean managed-property

我正在尝试访问托管bean构造函数中的会话bean数据。为此,我使用@ManagedProperty注释如下。当我尝试在构造函数中访问时,它给出了java.lang.NullPointerException,并且在另一个函数中可以访问同一段代码。可能是我需要为构造函数做一些不同的事情。有人可以指导我做我需要做的事。

@ManagedProperty(value="#{sessionBean}")
private SelectCriteriaBean sessionData; 

// This is contructor
public ModifyBusinessProcessBean() {
  logger.debug(getSessionData().getSelectedBusinessProcessLevelZero());     
}

// Another Function where the same code doesn't give error
public anotherFunction() {
  logger.debug(getSessionData().getSelectedBusinessProcessLevelZero());     
}

2 个答案:

答案 0 :(得分:3)

您不应该在构造函数中使用@ManagedProperty,因为它尚未设置。创建托管bean时,首先调用其构造函数,然后使用setter设置托管属性。您应该使用在设置属性后调用@PostConstruct注释的方法:

@PostConstruct
public void init() {
  logger.debug(getSessionData().getSelectedBusinessProcessLevelZero());
}

答案 1 :(得分:3)

这是预期的行为。

在构造bean之后立即执行

@PostConstruct方法,并且已经发生了诸如@ManagedProperty之类的依赖项的注入。因此,您的依赖项将无法在构造函数中使用。

使用@PostConstruct注释方法时需要做什么,并且以标准方式引用您的依赖项:

@PostConstruct
public void init() {
    injectedDependency.performOperation();
}