Cannot resolve taglib with uri appears in jsp in Maven project

Reason

Insert picture description here
No related jstl jar package

Solution

Add the following code in `dependencies`` in the pom.xml file:

 <dependency>
   <groupId>javax.servlet.jsp.jstl</groupId>
   <artifactId>jstl</artifactId>
   <version>1.2</version>
</dependency>

With the new maven library, it is already possible
Insert picture description here

Guess you like

Origin blog.csdn.net/Black_Customer/article/details/107209778