关于错误 Can not find the tag library descriptor for “http://java.sun.com/jstl/core”的解决方法

关于错误 Can not find the tag library descriptor for "http://java.sun.com/jstl/core"的解决方法

原因:JSTL taglib需要jstl.jar来支持,低版本的jstl.jar需要其他的jar包配合使用,容易出错
解决方法:把jstl.jar版本换成1.2即可。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
发布了20 篇原创文章 · 获赞 264 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/Mr_wxc/article/details/93231253