maven 项目中使用 jstl标签详解编程语言

在pom.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>

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

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

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/19514.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论