Migrating Struts 1 application to Struts 2

2013-09-03 Thread Srineel Mazumdar
Hi All, I am migrating an application from Struts 1 to Struts 2 and frequently I am facing scenarios where I need to use request.getSession to set/get attributes. As far as my knowledge goes, this is not considered to be a best practice in Struts 2. What is the best was way to handle this

Re: Migrating Struts 1 application to Struts 2

2013-09-03 Thread NIJO GEORGE
Using the sessionAware interceptor may fix your scenario http://struts.apache.org/release/2.0.x/struts2-core/apidocs/org/apache/struts2/interceptor/SessionAware.html http://www.itinpractice.com/tutorials/403/implementing-sessionaware-interface.html#.UiV9KNI6BQ4

Re: Migrating Struts 1 application to Struts 2

2013-09-03 Thread Srineel Mazumdar
Thanks a lot !! I can get the values in userSession which will be like session.getAttribute.. but what about session.getAttribute?? Can I set a key value pair in userSession and it will automatically picked up ? On Tue, Sep 3, 2013 at 2:12 AM, NIJO GEORGE nijo...@gmail.com wrote: Using the

Re: Migrating Struts 1 application to Struts 2

2013-09-03 Thread NIJO GEORGE
yes... you can set session as Key Value pairs and retrieved easily in Struts2. Struts2 OGNL expressions can be used in getting session value from the value stack. My Sturts2 knowledge is average. so you can refer some tutorials for more clarification On Tue, Sep 3, 2013 at 11:51 AM, Srineel