Re: Migrating Struts 1 application to Struts 2

2013-09-02 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 Mazu

Re: Migrating Struts 1 application to Struts 2

2013-09-02 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 wrote: > Using the sessionAware interc

Re: Migrating Struts 1 application to Struts 2

2013-09-02 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 http://struts.apache.org/developme

Migrating Struts 1 application to Struts 2

2013-09-02 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 scenario

Re: Value not persisting in domain object

2013-09-02 Thread Srineel Mazumdar
Hi Umesh and Paul, I have attached the code. Cart.java is my domain class where itemlist will have all the items added in the cart. AddItemToCartAction will add to itemList and UpdateCartQuantitiesAction will fetch it from itemList. I agree to what Paul ..but can you suggest a workaround?? This i