How to change JSESSIONID in Struts 2

3.1k Views Asked by At

I should assign unique JSESSIONID after authentication. The JSESSIONID before authentication and after authentication should always be different.

So, how can I do this using Struts 2?

2

There are 2 best solutions below

1
On BEST ANSWER

You should refer to following

http://nickcoblentz.blogspot.in/2008/09/jsessionid-regeneration-in-struts-2.html

Your class must implement SessionAware for this. There are 4 methods suggested for it .

One of them could be

((SessionMap)this.session).invalidate();
this.session = ActionContext.getContext().getSession();
0
On

Unique session id you can get if you get HttpSession object. In Struts2

HttpSession session = ServletActionContext.getRequest().getSession();
System.out.println("Old session ID: "+session.getId());
//do authentication
session = ServletActionContext.getRequest().getSession(true);
System.out.println("New session ID: "+session.getId());