Can not find the tag library descriptor for "http://Java.sun.com/jsp/jstl/core"
仍然报错。真是费解了。
maven里面已经依赖了。包已经下好了。项目中也可以看到引入了maven的包。
org.springframework
spring-webmvc
4.3.2.RELEASE
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
问题原因找到了
java是小写的
这样写
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>