Hello,
i have 2 controller:
There is any way to let they share the same object attribute "list" as session attribute?Code:@Controller @SessionAttributes("list") public class FirstController {} @Controller @SessionAttributes("list") public class SecondController {}
Now I have to call the httpRequest and put it in session, is this the only way?
Thank you.


Reply With Quote