在异步方法接缝中获取上下文参数
我想在 web.xml 中配置上下文参数。在正常的方法调用中(使用seam 2.2.0),我这样做:
readDirectory = (String) FacesContext.getCurrentInstance()
.getExternalContext().getInitParameter(
"ReadDirectory");
工作正常,但在异步方法(@Asynchronous)中,我的faceContext为null。
所以我不知道如何获取这个参数。
I want to get a context-param configure in my web.xml. In a method call normally (with seam 2.2.0), I do this:
readDirectory = (String) FacesContext.getCurrentInstance()
.getExternalContext().getInitParameter(
"ReadDirectory");
It's work fine, but in asynchronous method (@Asynchronous) my faceContext is null.
So I don't know how to get this param.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了:
当你知道的时候很容易^^
I found it:
Easy when you know ^^