方法一:
在页面开头的头部标签里加上isELIgnored="false"(不忽略el表达式格式)
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%>
方法二:
修改web.xml中的修改版本到2.5以上
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
</web-app>
原因:2.5以后默认自动开启el表达式的功能