javaee idea创建maven项目,使用el和jstl

如果使用el表达式出现下图问题

javaee idea创建maven项目,使用el和jstl_第1张图片javaee idea创建maven项目,使用el和jstl_第2张图片

解决办法

这是因为maven创建项目时,web.xml头部声明默认是2.3,这个默认jsp关闭el表达式

办法1

在每个需要用到el和jstl的页面的上面加一句:

 <%@ page isELIgnored="false" %>    

javaee idea创建maven项目,使用el和jstl_第3张图片

javaee idea创建maven项目,使用el和jstl_第4张图片

方法2 修改web.xml文件开头的web-app的版本

改为 3.0(2.4以后都可以,太高也不行,要注意配合tomcat支持的版本)


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">

javaee idea创建maven项目,使用el和jstl_第5张图片
javaee idea创建maven项目,使用el和jstl_第6张图片

你可能感兴趣的:(Mac开发,java-ee,intellij-idea,maven)