AI智能
改变未来

Java开发常用JAR包


记录一些JAR包(…持续更新)

MySQL

<!--MySQL --><!--Driver:com.mysql.jdbc.Driver--><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.35</version></dependency><!--C3P0 --><dependency><groupId>com.mchange</groupId><artifactId>c3p0</artifactId><version>0.9.5.2</version></dependency>

Spring

<!--Spring --><!--4个核心模块 --><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>4.3.6.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-beans</artifactId><version>4.3.6.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>4.3.6.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-expression</artifactId><version>4.3.6.RELEASE</version></dependency><!--4个核心模块 end--><!--Spring AOP--><dependency><groupId>org.springframework</groupId><artifactId>spring-aop</artifactId><version>4.3.6.RELEASE</version></dependency><!--AOP联盟提供的规范包--><dependency><groupId>aopalliance</groupId><artifactId>aopalliance</artifactId><version>1.0</version></dependency><!--AspectJ --><dependency><groupId>org.springframework</groupId><artifactId>spring-aspects</artifactId><version>4.3.6.RELEASE</version></dependency><!--AspectJ框架提供的规范 (这个要注意版本,高版本可靠些) --><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>1.9.6</version></dependency><!--Spring jdbc --><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>4.3.6.RELEASE</version></dependency><!--Spring 事务处理--><dependency><groupId>org.springframework</groupId><artifactId>spring-tx</artifactId><version>4.3.6.RELEASE</version></dependency><!--Spring end --><!--Annotation的支持 如:@Resource--><dependency><groupId>org.apache.tomcat</groupId><artifactId>tomcat-annotations-api</artifactId><version>9.0.13</version></dependency><!--两选一<dependency><groupId>javax.annotation</groupId><artifactId>jsr250-api</artifactId><version>1.0</version></dependency>-->

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Java开发常用JAR包