是否可以将@SessionScoped
bean 用作自定义范围的 Context 中的字段?
我正在使用 CDI 编写自定义范围(“ScreenScoped”),因此它与 CDI 的行为大致相同@ViewScoped
(我这样做是因为后者不兼容 WebSphere)。到目前为止,我的范围就像@ApplicationScoped
这样。我想使用我的@SessionScoped NavigationHandler
类(每次用户单击链接或按钮时调用)来确定我的 ScreenScoped 生命周期何时结束。但是,当我尝试使用@Inject
ed 字段时,我确实遇到了错误。
public class ScreenContext
implements Context
{
@Inject
private NavigationHandler navigationHandler;
...
}
由于以下原因出现 NullPointerException @Inject
:
16:55:07,492 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (http-localhost/127.0.0.1:8443-10) Error Rendering View[/page/hello.xhtml]: javax.el.ELException: /page/hello.xhtml @24,58 visible="#{helloController.popupshowed}": java.lang.NullPointerException
...
Caused by: java.lang.NullPointerException
at com.mypackage.scope.screenscope.ScreenContext.get(ScreenContext.java:38) [myproject.jar:]
第 38 行是我第一次调用注入字段:
System.out.println("Navigation is used: " + navigationHandler.getUserId());