maven中使用jstl

Posted Fann~~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven中使用jstl相关的知识,希望对你有一定的参考价值。

在pom.xml文件下面增加如下的依赖包:

<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>

 

在用到jstl的页面上增加下面一段话。

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

 

以上是关于maven中使用jstl的主要内容,如果未能解决你的问题,请参考以下文章

maven中使用jstl

maven下使用jstl标签(1.2)版本

maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.

使用maven为web工程引入jstl包时报错了

Maven搭建Spring MVC时使用jstl无效

maven项目中引入Jstl