美文网首页
IntelliJ IDEA里找不到taglib with uri

IntelliJ IDEA里找不到taglib with uri

作者: JarvisTH | 来源:发表于2019-05-22 21:14 被阅读0次

cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core 等等..

解决方法:
1.如果使用的是maven的话,只需要在pom.xml文件里面加入这两个jar包即可:

<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>

相关文章

网友评论

      本文标题:IntelliJ IDEA里找不到taglib with uri

      本文链接:https://www.haomeiwen.com/subject/srypzqtx.html