实在不知道怎么回事,后来在网上竟然找了几个方法同时使用成功了:
1.导入jar包,
据说有tomcat9及以前和tomcat10的区别,不同版本导入不同jar包
我用的版本是8.5.82,导入以下两个:
taglibs-standard-impl-1.2.5.jar
taglibs-standard-spec-1.2.5.jar
2.修改pom.xml
需要在prom.xml中添加:
<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>
3.再次修改pom.xml
将pom.xml中的配置代码:
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId> //去掉红色部分
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
改为:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
重新导入即可