maven项目pom.xml配置文件引入jstl依赖

在做javaweb项目时,jsp页面中经常用到JSP标准标签库(JSTL),如果是maven工程的话,就需要在pom.xml引入jstl依赖,如下:

	<!--jstl依赖-->
    <dependency>
      <groupId>javax.servlet.jsp</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jstl</artifactId>
      <version>1.2</version>
    </dependency>

猜你喜欢

转载自blog.csdn.net/weixin_44753773/article/details/109406742