我試圖訪問託管bean構造函數中的會話bean數據。爲此,我使用下面的@ManagedProperty
註釋。當我嘗試訪問構造函數時,它會給出java.lang.NullPointerException
,並且可以在另一個函數中訪問同一段代碼。可能是我需要爲構造函數做一些不同的事情。有人能指導我需要做什麼嗎?在JSF託管bean的構造函數中訪問會話bean數據
@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());
}
哈!行動中的併發:) – skuntsel 2013-03-15 08:51:46
是的,那真的是。 :) – partlov 2013-03-15 08:53:13
+1輸入速度:) – skuntsel 2013-03-15 08:55:18