I'm working on a project with the following technologies:
While I'm deploying it on tomcat server, I'm getting a "JSESSIONID 456jghd787aa"
added at the end of the URL.
I was trying to resolve this but I'm not able to do that.
For tomcat 7 add this to web.xml
<session-config>
<!-- Disables URL-based sessions (no more 'jsessionid' in the URL using Tomcat) -->
<tracking-mode>COOKIE</tracking-mode>
</session-config>