在maven项目中使用el表达式可能会出现这种情况
例如我们在jsp中书写 ${666}
我们希望显示 666
但结果却是 ${666}
这时候将web.xml写为
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
</web-app>
其原因是:2.5之前web.xml文件中的头定义中,el表达式默认是忽略不解析的