失败原因:使用maven新建web工程时,可能会新建一个基于老的jsp1.2的工程,而jsp1.2版本默认情况下是禁用EL表达式的。
解决方法:
第一种方法:在需要解析Model或者ModelAndView的jsp页面中添加:<%@ page isELIgnored="false" %>
第二种方法:在web.xml文件中的<web-app>标签中添加: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1"的属性 |
|