天天看點

MyEclipse 錯誤提示 Can not find the tag library descriptor for XXX

在我的jsp裡面引入了JSTL,如下所示:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
           
MyEclipse 錯誤提示 Can not find the tag library descriptor for XXX

我在maven裡面配置也明明配置了 JSTL:

<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
        <groupId>jstl</groupId>
        <artifactId>jstl</artifactId>
        <version>1.2</version>
    </dependency>
</dependencies>
           

網上介紹了一大推的方法:

後來将

中的jsp去掉就可以了