Can not find the tag library descriptor http://java.sun.com/jsp/jstl/core
程序员文章站
2022-03-02 23:46:26
...
sts 创建springmvc应用提示此错误,
导入朋友的项目也有此错误,
Can not find the tag library descriptor http://java.sun.com/jsp/jstl/core
<%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core”%> fails with “Can not find the tag library descriptor”
解决办法:
参考 http://mvnrepository.com/artifact/jstl/jstl/1.2
打开上面的链接,
下载jstl1.2到你的lib下面;
如果使用maven则配置pox.xml
<dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency>
如果使用Ivy,Grape,Gradle,Buildr,SBT等,都可以找到对应的方法。
参考:http://*.com/questions/13595511/taglib-prefix-c-uri-http-java-sun-com-jsp-jstl-core-fails-with-can
上一篇: 张小庆,在路上(5)-第一个项目