首页 > 其他分享 >一些常用Maven依赖

一些常用Maven依赖

时间:2022-10-15 19:23:23浏览次数:51  
标签:常用 依赖 1.2 taglibs commons junit Maven servlet javax

  1 <dependencies>
  2         <!--servlet依赖  2  -->
  3         <dependency>
  4             <groupId>javax.servlet.jsp</groupId>
  5             <artifactId>javax.servlet.jsp-api</artifactId>
  6             <version>2.3.3</version>
  7         </dependency>
  8 
  9         <dependency>
 10             <groupId>javax.servlet</groupId>
 11             <artifactId>javax.servlet-api</artifactId>
 12             <version>4.0.1</version>
 13             <scope>provided</scope>
 14         </dependency>
 15         <!-- jstl的依赖  3 -->
 16         <dependency>
 17             <groupId>javax.servlet.jsp.jstl</groupId>
 18             <artifactId>jstl-api</artifactId>
 19             <version>1.2</version>
 20         </dependency>
 21 
 22         <dependency>
 23             <groupId>taglibs</groupId>
 24             <artifactId>standard</artifactId>
 25             <version>1.1.2</version>
 26         </dependency>
 27 
 28         <dependency>
 29             <groupId>javax.servlet</groupId>
 30             <artifactId>jstl</artifactId>
 31             <version>1.2</version>
 32         </dependency>
 33         <!--   用来操作文件上传     -->
 34         <dependency>
 35             <groupId>commons-fileupload</groupId>
 36             <artifactId>commons-fileupload</artifactId>
 37             <version>1.3.3</version>
 38         </dependency>
 39         <!--  io流     -->
 40         <dependency>
 41             <groupId>commons-io</groupId>
 42             <artifactId>commons-io</artifactId>
 43             <version>2.11.0</version>
 44         </dependency>
 45         <!-- 数据库连接依赖  1 -->
 46         <dependency>
 47             <groupId>mysql</groupId>
 48             <artifactId>mysql-connector-java</artifactId>
 49             <version>8.0.19</version>
 50         </dependency>
 51         <!-- DBCP的依赖   2 -->
 52         <dependency>
 53             <groupId>commons-dbcp</groupId>
 54             <artifactId>commons-dbcp</artifactId>
 55             <version>1.4</version>
 56         </dependency>
 57 
 58         <dependency>
 59             <groupId>commons-pool</groupId>
 60             <artifactId>commons-pool</artifactId>
 61             <version>1.4</version>
 62         </dependency>
 63         <!--c3p0的依赖    1    -->
 64         <dependency>
 65             <groupId>com.mchange</groupId>
 66             <artifactId>c3p0</artifactId>
 67             <version>0.9.5.2</version>
 68         </dependency>
 69         <!--druid数据源依赖  -->
 70         <dependency>
 71             <groupId>com.alibaba</groupId>
 72             <artifactId>druid</artifactId>
 73             <version>1.1.9</version>
 74         </dependency>
 75         <!--数据库CRUD操作的工具类-->
 76         <dependency>
 77             <groupId>commons-dbutils</groupId>
 78             <artifactId>commons-dbutils</artifactId>
 79             <version>1.6</version>
 80         </dependency>
 81         <!--jsp中使用一些标签库的依赖      2  -->
 82         <dependency>
 83             <groupId>org.apache.taglibs</groupId>
 84             <artifactId>taglibs-standard-spec</artifactId>
 85             <version>1.2.5</version>
 86         </dependency>
 87 
 88         <dependency>
 89             <groupId>org.apache.taglibs</groupId>
 90             <artifactId>taglibs-standard-impl</artifactId>
 91             <version>1.2.5</version>
 92         </dependency>
 93         <!--   JUnit是用于编写和运行可重复的自动化测试的开源测试框架  2   -->
 94         <dependency>
 95             <groupId>junit</groupId>
 96             <artifactId>junit</artifactId>
 97             <version>4.13.1</version>
 98             <scope>test</scope>
 99         </dependency>
100 
101         <dependency>
102             <groupId>org.junit.jupiter</groupId>
103             <artifactId>junit-jupiter</artifactId>
104             <version>RELEASE</version>
105             <scope>compile</scope>
106         </dependency>
107     </dependencies>

 

标签:常用,依赖,1.2,taglibs,commons,junit,Maven,servlet,javax
From: https://www.cnblogs.com/kidzxy/p/16794833.html

相关文章

  • F5 LTM 常用oid列表
    所属层级指标输出类型OIDltmVirtualServersltmVirtualServNumberINTEGER.1.3.6.1.4.1.3375.2.2.10.1.1ltmVirtualServNameLongDisplayString.1.3.6.1.4......
  • 常用DOS命令
    win+r打开运行窗口,输入cmdipconfig/all:查看ip地址、子网掩码、网关等arp-a:查看ip地址和mac对应关系ping:查看当前计算机与要访问的计算机之间的连接通信情况cls:清屏......
  • maven在idea中配置
    idea中内置一个maven,一般不使用内置maven,因为内置修改maven的设置不方便,让idea指定maven安装信息配置入口:settings   file-settings(当前工程设置)——-Build,Execut......
  • #yyds干货盘点#docker常用命令
    服务查看Docker版本信息 dockerversion查看docker简要信息 docker-v启动Docker systemctlstartdocker关闭docker systemctlstopdocker设置开机启动 systemctlen......
  • redis常用命令
    Redis事务命令DISCARD取消事务,放弃执行事务块内的所有命令。EXEC执行所有事务块内的命令。MULTI标记一个事务块的开始。UNWATCH取消WATCH命令对所有key的监视......
  • Redis常用命令-实战篇
    目录写在前面连接操作命令持久化远程服务控制对value操作的命令操作字符串String命令ListSetHash写在前面java操作redis太常见了,基本上有需要的系统,都会上缓存,缓存......
  • gitlab常用命令
    1.gitlab上打标签(1).上文件到gitlab仓库拉取gitlab项目[email protected]:backend_group/it/test2.git切换分支(切换到master)cdtest2gitcheckoutmaster查看状态gi......
  • maven生命周期详解说明
    转自:​​http://www.java265.com/Maven/202204/3220.html​​ 下文笔者讲述maven生命周期的详解说明,如下所示:Maven生命周期Maven生命周期:对所有的构建过程进行抽象和......
  • Collection集合常用方法
    packagepackage3;importjava.util.ArrayList;importjava.util.Collection;publicclassCollectionDemo1{publicstaticvoidmain(String[]args){......
  • JavaWeb学习5:Maven
    为什么要学习这个技术?在javaweb开发中,需要使用大量的jar包,这种jar包需要手动的导入如何让一个东西自动导入和配置jar包所以Maven诞生了maven就是一个架构管理工具1......