【IDEA】IDEA下maven项目无法提示和使用EL表达式的解决办法
今天在IDEA创建web项目之后发现无法使用EL和JSTL, 一、如果JSP中无法自动提示EL表达式,比如${pageContext.request.contextPath},可在pom.xml的 <dependencies> 标签中插入以下代码 <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> 下面是EL和JSTL的坐标,不用pom.xml中设置,由上面的依赖传递: <!-- EL和JSTL --> < dependency > < groupId > taglibs </ groupId > < artifactId > standard </ artifactId > < version > 1.1.2 </ version > </ dependency > < dependency > < groupId > javax.servlet </ groupId > < artifactId > jstl </ artifactId > < version > 1.2 </ version > </ dependency > 二