persist « Session « Spring Q&A





1. Session Variable doesnot persist value in next request in Spring MVC controller    stackoverflow.com

I have application wide single controller.

@RequestMapping(method = RequestMethod.POST,value="services")
@ResponseBody
mwpWebServices(@RequestBody String data, HttpServletRequest request, HttpServletResponse response) throws JSONException, UnknownHostException, MongoException

{
    HttpSession session = request.getSession();

    ......

   ...

2. How to persist model data in session    forum.springsource.org

I have some data (a search result list) which I put in the model to help render the next view. However, the same data is needed by the controller the next ...

3. resin, persist session and spring    forum.springsource.org

Hi I have strange problem with my application running on resin. I'm using persistent session and from time to time resin invalidates user's session object No idea why this happens! The ...

4. Using hibernate+spring session fails to persist data    forum.springsource.org

Using hibernate+spring session fails to persist data Hi, I desperately need help with the problem I have with hibernate session data persisting. The problem is that sometimes the save() works and ...