How could randomly my session is null?

前端 未结 1 1819
暖寄归人
暖寄归人 2020-12-20 02:14

I am using Tomcat 6.0, JSF2.0.2

I realized that randomly HttpServletRequest getSession method, returns null.

I could the session randomly be nul

相关标签:
1条回答
  • 2020-12-20 02:46

    First, this problem is not related to JSF since it's "just" a component based MVC framework. This problem is more related to the servletcontainer in question, which is in this case thus Tomcat.

    As to the problem: I've seen this before in specific portal(-like) applications. Tomcat has some builtin phishing prevention which would return a null session when the given cookie ID and path doesn't match with any cookie in Tomcat's session manager. More than often this problem can be solved by setting emptySessionPath attribute of the HTTP Connector <Connector> in conf/server.xml to true.

    0 讨论(0)
提交回复
热议问题