主要原因就是:没有开启EL表达式功能
无法识别EL表达式、前端获取不到后端传入的数据
解决方法一:
开启EL表达式功能:
在jsp头部添加:
isELIgnored="false"
解决方法二:(推荐)
提升的Web模块的版本,2.5以下的版本都默认关闭EL表达式
修改web.xml
<?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">