我想在我的web.xml中配置一个context-param。在通常的方法调用中(使用接缝2.2.0),我这样做:

readDirectory = (String) FacesContext.getCurrentInstance()
                .getExternalContext().getInitParameter(
                        "ReadDirectory");


它工作正常,但是在异步方法(@Asynchronous)中,我的faceContext为null。

所以我不知道如何获得这个参数。

最佳答案

我找到了:

ServletLifecycle.getServletContext().getInitParameter("ReadDirectory");


当您知道^^时很容易

07-26 01:51