http://java.sun.com/jsp/jstl/core 报红
时间: 2023-10-26 17:08:40 浏览: 158
JSP页面显示
这个问题可能是因为你的项目缺少 JSTL 的依赖。你可以在项目的 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
```
如果你使用的是 Gradle,可以在 build.gradle 文件中添加以下依赖:
```
compile group: 'javax.servlet', name: 'jstl', version: '1.2'
```
阅读全文