jsp el表达式无效问题

servlet2.3和2.3以前的servlet是默认是关闭EL

解决方案:

web-app  声明的版本改成3.0

<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>
原文地址:https://www.cnblogs.com/merlini/p/3998154.html