I have a controller mapping as below
@RequestMapping(value = { "/search"}, method = RequestMethod.GET)
public @ResponseBody
Object search(@PathVariable("query") String query,
...
Type: Posts; User: sumitimes; Keyword(s):
I have a controller mapping as below
@RequestMapping(value = { "/search"}, method = RequestMethod.GET)
public @ResponseBody
Object search(@PathVariable("query") String query,
...
session - holds the state of my application
spring - is Migrating the session
state - should automatically get migrated with the session
I think it is implied in the description itself...
Hi Skram,
Thanks for the reply, I am working on a shopping cart application, so i expected the shopping cart which is already in session will be replicated (the existing session state).
Please...
Skram,
The session is getting created but it is "not copying the existing session attributes to the new session "
Yes i have added that filter config in my web.xml
regards
sumit
Hi,
Below is my settings.
<session-management session-fixation-protection="migrateSession">
<concurrency-control max-sessions="1" />
</session-management>
Other...