jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错

一直在开发着的一个项目,重新启动后就报这个错了。
1、先是查看包引用,包中也没有冲突(未解决问题):

<dependency>
            <groupId>javax.servletgroupId>
            <artifactId>jstlartifactId>
            <version>1.2version>
            <type>jartype>
dependency>
<dependency>
    <groupId>taglibsgroupId>
    <artifactId>standardartifactId>
        <version>1.1.2version>
    <type>jartype>
dependency>

jsp中也有引入

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

2、换jdk (未解决问题)
开始只有jre1.8

点击 window–>
jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第1张图片

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第2张图片

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第3张图片

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第4张图片

选中项目后:

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第5张图片

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第6张图片

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第7张图片

更改后,项目名右下角出现了一个红色叉号,再更换下java版本

jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错_第8张图片

红色叉号消失。
启动项目后,访问项目,依然包jstl

3、(解决问题)

最后没有办法将tomcat7换成tomcat8之后,没有问题了。很无奈

你可能感兴趣的:(java)