- 在每个jsp页面加入<%@ page isELIgnored="false" %>,这样的方法比较麻烦。
- 因为maven创建的工程默认是servlet2.3的,所以EL表达式默认是关闭的。所以需要先将工程改为3.0的。具体做法参考。
- 将web.xml改为
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
</web-app>
时间: 2024-10-27 00:09:20
<?xml version="1.0" encoding="UTF-8"?> <web-app> </web-app> |