<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
在做javaweb项目时,jsp页面中经常用到JSP标准标签库(JSTL),如果是maven工程的话,就需要在pom.xml引入jstl依赖,如下:
<!--jstl依赖-->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</ve
完成后,你就可以在 JSP 文件中使用 JSTL 的标签库了,例如 <c:if>, <c:forEach>, <c:set> 等标签。将上述代码添加到你项目的 pom.xml 文件的 标签内即可。这样 Maven 将会自动下载并引入 JSTL 相应的库文件。要在项目中使用 Maven 引入 JSTL,你需要在项目的 pom.xml 文件中添加相应的依赖项。在 Maven 构建过程中,Maven 将会自动下载 JSTL 相关的库文件并将其放置在项目的类路径下,供项目使用。
<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
<dependency>
<groupId>javax.servlet<...
https://mvnrepository.com/
下面直接把需要的几个依赖整理出来。
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl -->
<dependency>
<groupId>javax.
使用Maven导入jstl报错:The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application
<dependency> <groupId>javax.servlet.jsp.jstl</groupId> <artifactId>jstl-api</artifactId> <version>1.2</version> &l...
一:项目的POM.xml中添加JAR包的依赖 <dependency><groupId>jstl</groupId><artifactId>jstl</artifactId><version>1.2</version></dependency><dependency&am