Hello expert,

I use Spring MVC, and abstractController to handle page request. from this controller i return a new ModelAndView("ViewName", "ModelName", ModelObject);

as expected, after this code, the dispatcher forward the page to a jsp page named "ViewName.jsp". Inside the body section of this jsp page, i have this code to retrieve value from the model object:
Code:
<body>
....
Object is : ${ModelName.myobject}
....
</body>
My problem is at runtime, the page just shows ${ModelName.myobject} instead of the value of the model object.

Can you tell if i need to include and jstl file?

Thanks,