相关文章推荐
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

By default Tomcat uses the web application name (context path) as the session cookie path when it generates a session cookie. Is there a way to influence this programmatically? I'd like to include a subset of the servlet path. (This is for a multi-tenant web application where a user can be logged in to more than one tenant at a time, in different windows.) I don't want to set it to a fixed string in a configuration file.

@KonstantinV.Salikhov Thanks for the link. That feature is new in Servlet 3.0, I wasn't aware of it, and it does allow programmatic influence of the cookie path. Unfortantely it doesn't let me configure the cookie path differently for different servlet path prefixes, because the servlet context that it's attached to is global (or at least global per JVM). gatkin Sep 19, 2012 at 14:58

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question . Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers .

 
推荐文章