If I have a modelandView like:
ModelAndView mav = new ModelAndView();
mav.setViewName("index");
mav.addObject("message", "hello, world");
return mav;
In index.jsp, how do I output the value of "message"?
And what if I passed in:
mav.addObject("user", currentUser);
It seems the docs jump straight into forms handling.