java threadlocal singleton - what is it?

帅比萌擦擦* 提交于 2019-11-28 04:36:16

问题


In layman speak, what does it mean when somebody says an object is a threadlocal singleton in Java? I was at a lecture about Java Server Faces, and everytime the FacesContext was spoken of - the instructor always reminded us that it is a threadlocal singleton.


回答1:


There is only one unique instance of the FacesContext per thread.

The FacesServlet creates a ThreadLocal<FacesContext> on the beginning of the HTTP servlet request and removes it on the end of the HTTP servlet response associated with the HTTP servlet request. Whenever you do a FacesContext#getCurrentInstance() in your JSF code, you'll always get the one and the same instance throughout the entire HTTP servlet request/response processing.

Since HTTP servlet requests are executed by distinct threads and the FacesContext instance is attached as thread local variable to a single thread, no two HTTP servlet requests share the same FacesContext instance.



来源:https://stackoverflow.com/questions/5137860/java-threadlocal-singleton-what-is-it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!