EL表达式无法获取Spring MVC的Model封装好的数据解决方法
程序员文章站
2022-07-11 09:17:41
1.在spring-mvc的配置文件中已经配置jsp的视图解析器 2.在Controller中使用Model的addAttribute方法添加属性name,msg 3.在jsp页面中使用${msg}取msg属性的值失败 4.失败输出 5.解决方法 在需要解析Model或者ModelAndView的j ......
1.在spring-mvc的配置文件中已经配置jsp的视图解析器
2.在controller中使用model的addattribute方法添加属性name,msg
3.在jsp页面中使用${msg}取msg属性的值失败
4.失败输出
5.解决方法
在需要解析model或者modelandview的jsp页面中添加:<%@ page iselignored="false" %>
6.成功输出