How to change jsessionid cookie path to server root in Spring app on Jetty? How to change jsessionid cookie path to server root in Spring app on Jetty? spring spring

How to change jsessionid cookie path to server root in Spring app on Jetty?


Attempt #4 is on the right track.

Providing I am reading this right, you're using the maven configuration on the context /app which means in your web.xml the / your settings is /app because that is the root of the context you're configuring.

Put another way you can't configure the session for www.foo.com/ if you are only deploying into the www.foo.com/app context, imagine if someone else were deploying apps into that url, you can't just decide to make your session cookies apply to everyone operating under that url.