ModelAndView’s model value is not displayed in JSP via EL

Problem In Spring MVC development, developer try to set a value into a model, and display the value in JSP via EL, e.g ${msg}, but it just outputs the result as it is – ${msg}, not the “value” stored in the model. The EL is just not working in JSP, why? Spring’s Controller import javax.servlet.http.HttpServletRequest; …

Read more