I am using Spring3 MVC. I have a controller method which will return an object. Now how can i get that object and assign it to global variable?
SomeObject uiInfo = new SomeObject("data","123");
return new ModelAndView("SomePage", "uiInfo", uiInfo);
Now how can i get this model in JSP and assign it to global variable?
Thanks!