spring spring-mvc mybatis jetty 的pom.xml依赖配置完整版

news/2024/7/23 10:06:08 标签: java, 测试, 数据库
<properties>
		<dev.version>0.0.1-SNAPSHOT</dev.version>
  	<!-- 主要依赖库的版本定义 -->
		<spring.version>4.0.4.RELEASE</spring.version>
		<spring-asm.version>3.1.4.RELEASE</spring-asm.version>
		<spring-data-jpa.version>1.5.2.RELEASE</spring-data-jpa.version>
		<spring-data-commons.version>1.10.2.RELEASE</spring-data-commons.version>
		<spring-data-redis.version>1.4.1.RELEASE</spring-data-redis.version>
		<mybatis.version>3.2.7</mybatis.version>
		<mybatis-spring.version>1.2.2</mybatis-spring.version>
		<mysql.version>5.1.33</mysql.version>
		<mybatis.version>3.1.1</mybatis.version>
		<mybatis-spring>1.2.2</mybatis-spring>
		<!-- Plugin的属性 -->
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java.version>1.7</java.version>
  </properties>
  <dependencies>
	 
	<dependency>
	    <groupId>net.sf.json-lib</groupId>
	    <artifactId>json-lib</artifactId>
	    <version>2.4</version>
	    <classifier>jdk15</classifier>
	</dependency>
	  
  <!-- spring -->
	 <dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-core</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>  
            <groupId>org.springframework</groupId>  
            <artifactId>spring-beans</artifactId>  
            <version>${spring.version}</version>  
        </dependency> 
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context-support</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-aop</artifactId>
			<version>${spring.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-tx</artifactId>
			<version>${spring.version}</version>
		</dependency>
	  	<dependency>
		    <groupId>org.springframework</groupId>
		    <artifactId>spring-jdbc</artifactId>
		    <version>${spring.version}</version>
		</dependency>
	  	

	  	
	  
		
		<!-- mysql -->
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>${mysql.version}</version>
		</dependency>
		
		<!-- mybatis -->
		<dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis</artifactId>
			<version>${mybatis.version}</version>
		</dependency>
       <dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis-spring</artifactId>
			<version>${mybatis-spring.version}</version>
		</dependency> 
		
	
	<!-- 其他 -->

	 <dependency>
		<groupId>org.apache.tomcat</groupId>
		<artifactId>tomcat-jdbc</artifactId>
		<version>8.0.30</version>
	</dependency>
	   <dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.6</version>
		</dependency>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.2</version>
		</dependency>
  		<dependency>
			<groupId>commons-collections</groupId>
			<artifactId>commons-collections</artifactId>
			<version>3.2.1</version>
		</dependency>
		<dependency>
			<groupId>commons-pool</groupId>
			<artifactId>commons-pool</artifactId>
			<version>1.6</version>
		</dependency>
		<dependency>
			<groupId>commons-dbcp</groupId>
			<artifactId>commons-dbcp</artifactId>
			<version>1.3</version>
		</dependency> 

		
  
   <!-- Jetty Webapp -->  
        <dependency>  
            <groupId>org.eclipse.jetty</groupId>  
            <artifactId>jetty-webapp</artifactId>  
            <version>8.0.4.v20111024</version>  
        </dependency>  
  
        <!-- JSP Support -->  
        <dependency>  
            <groupId>org.glassfish.web</groupId>  
            <artifactId>javax.servlet.jsp</artifactId>  
            <version>2.2.3</version>  
        </dependency>  
  
        <!-- EL Support -->  
        <dependency>  
            <groupId>org.glassfish.web</groupId>  
            <artifactId>javax.el</artifactId>  
            <version>2.2.3</version>  
        </dependency>  
  
        <!-- JSTL Support -->  
        <dependency>  
            <groupId>org.glassfish.web</groupId>  
            <artifactId>javax.servlet.jsp.jstl</artifactId>  
            <version>1.2.1</version>  
            <exclusions>  
                <exclusion>  
                    <artifactId>jstl-api</artifactId>  
                    <groupId>javax.servlet.jsp.jstl</groupId>  
                </exclusion>  
            </exclusions>  
        </dependency>  
  </dependencies>


http://www.niftyadmin.cn/n/1749388.html

相关文章

利用 Kasten 保护云原生虚拟化平台 KSV

1. 背景与本文目标每当看向 CNCF Landscape 的时候&#xff0c;我都会有种感叹&#xff0c;云原生富饶的生态环境&#xff0c;已经制造了一场云原生世界的寒武纪生命大爆发。这些云原生应用都在不同的领域做着应有的贡献&#xff0c;由于他们都遵循着云原生的开发标准&#xff…

linux ext4 安装包,Ext4

出自Linux Wiki提示&#xff1a;此文已超过 7 年(2579 天)未更新&#xff0c;如发现内容过时或有误&#xff0c;欢迎改进:)Ext4的名称来源于4th extended filesystem&#xff0c;它是广泛应用于Linux的Ext3文件系统的后继。同Ext3类似&#xff0c;Ext4也是日志文件系统。Ext2中…

芜湖,Tailscale 开源版本让你的 WireGuard 直接起飞~

原文链接&#x1f517; https://fuckcloudnative.io/posts/how-to-set-up-or-migrate-headscale/目前国家工信部在大力推动三大运营商发展 IPv6&#xff0c;对家用宽带而言&#xff0c;可以使用的 IPv4 公网 IP 会越来越少。有部分地区即使拿到了公网 IPv4 地址&#xff0c;也是…

使用 Emmet 提高编写 CSS 的效率

2019独角兽企业重金招聘Python工程师标准>>> 首先&#xff0c;Sublime Text 2 已经提供了比较强大的 CSS 样式所写方法来提高 CSS 编写效率。例如编写 position: absolute; 这一个属性&#xff0c;我们只需要输入 posa 这四个字母即可。它会弹出缩写样式的提示&…

linux监听火狐浏览器关闭,禁止Firefox终端消息Python/Linux

我是Python编程新手&#xff0c;正在尝试使用Python的webbrowser模块编写一个脚本&#xff0c;用web浏览器打开url/IP地址。在打开web浏览器的实际操作运行良好&#xff0c;但我收到了来自firefox的日志消息&#xff0c;这些消息来自于运行脚本的终端窗口。虽然它最终不会阻止脚…

五线谱基础知识

http://www.tan8.com/thread-705-1-1.html http://www.tan8.com/thread-7604-1-1.html

火山引擎多场景下的云原生技术实践

活动介绍从得到 4 小时跨年演讲直播、京东虎年 691 亿次春晚红包互动&#xff0c;到人气冰雪话题互动&#xff0c;2022 年开年的全民活动背后都有火山引擎全力以赴的技术力量支撑。作为字节跳动旗下的企业级技术服务平台&#xff0c;火山引擎于去年 12 月正式发布全系云产品&…

我要造轮子之基于JDK的AOP实现

1 前言 Aspect Oriented Programing&#xff0c;面向切面编程。 利用AOP可以对业务逻辑的各个部分进行隔离&#xff0c;从而使得业务逻辑各部分之间的耦合度降低&#xff0c;提高程序的可重用性&#xff0c;同时提高了开发的效率。 AOP主要用于日志记录&#xff0c;性能统计&am…