如何在某些类中实现活动(当前)UserContext?
我有一个问题。我希望有人能帮助我。
我想在 Servlet HttpListener SessionInitialize 方法运行时创建 UserContext。 然后我想在Java类中调用UserContext。
示例:
protected static Map userMapList=new HashMap();
该地图保留我的应用程序用户上下文。
但我不知道如何在某些类中实现活动(当前)UserContext?
JSF 中的其他示例:
FacesContext 谢谢,
I have a problem. I hope somebody can help me.
I want create UserContext when Servlet HttpListener SessionInitialize Method running.
And after i want to call UserContext in Java Class.
Example :
protected static Map userMapList=new HashMap();
this Map keep my application users contexts.
But i don't know how can i achieve active(current) UserContext in some classes?
Other Example in JSF:
FacesContext
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ThreadLocal 类来存储线程特定值。
因此,当您收到新请求[这实际上是一个新线程]时,您可以将其转储到 ThreadLocal 对象中
之后,在同一线程上运行的任何类都可以调用 ThreadLocal.get。
检查其 api @ http://download.oracle .com/javase/1.4.2/docs/api/java/lang/ThreadLocal.html
use ThreadLocal class to store thread specific values.
so when you get the new request [which really a new thread], you can dump that in the ThreadLocal object
after that, any class running on the same thread can just call ThreadLocal.get.
check its api @ http://download.oracle.com/javase/1.4.2/docs/api/java/lang/ThreadLocal.html