I've been reading docs and tutorials about spring (3.0), so I've learnt how to return a ModelAndView
with the JSP name and a Map as the model. I've learnt also that in a JSP, if you want to access one key of that map you do ${attributename}
and so on. That's JSP EL. Now my questions:
- What object of the page is the EL accessing? Is that
PageContext
? I tried to find those keys inPageContext.getAttribute
but they are not there. - Whatever the object is, is it automatic that the things in the model go there?
Feel free to add resources to clarify my ideas