搭建Spring所需的各类jar包及SpringBoot-starter汇总

Spring jar包官网下载地址:
http://repo.spring.io/release/org/springframework/spring/

Spring jar包的描述:针对3.2.2以上版本
org.springframework spring-aop ——Spring的面向切面编程,提供AOP(面向切面编程)实现
org.springframework spring-aspects —— Spring提供对AspectJ框架的整合
org.springframework spring-beans —— SpringIoC(依赖注入)的基础实现
org.springframework spring-context —— Spring提供在基础IoC功能上的扩展服务,此外还提供许多企业级服务的支持,如邮件服务、任务调度、JNDI定位、EJB集成、远程访问、缓存以及各种视图层框架的封装等
org.springframework spring-context-support —— Spring-context的扩展支持,用于MVC方面
org.springframework spring-core —— Spring的核心组件
org.springframework spring-expression —— Spring表达式语言
org.springframework spring-instrument —— Spring对服务器的代理接口
org.springframework spring-instrument-tomcat —— Spring对Tomcat的连接池的集成
org.springframework spring-jdbc —— JDBC支持包,包括数据源设置和JDBC访问支持
org.springframework spring-jms —— JMS支持包,包括辅助类来发送和接收JMS消息
org.springframework spring-messaging —— 信息体系结构和协议的支持
org.springframework spring-orm —— 对象/关系映射,整合第三方的ORM框架,如hibernate,ibatis,jdo,以及spring的JPA实现
org.springframework spring-oxm —— 对象的XML映射,可以让Java与XML之间来回切换
org.springframework spring-test —— 对于单元测试和集成测试的简单封装
org.springframework spring-tx —— 为JDBC、Hibernate、JDO、JPA等提供的一致的声明式和编程式事务管理
org.springframework spring-web —— SpringMVC支持WEB端应用部署架构
org.springframework spring-webmvc —— REST Web服务和Web应用的视图控制器的实现
org.springframework spring-webmvc-portlet —— SpringMVC的增强--MVC的实现作为一个Portlet的环境
org.springframework spring-websocket —— sockjs WebSocket的实现,包括对 STOMP的支持

Spring依赖包的描述:
aopalliance.jar —— AOP联盟的API包,里面包含了针对面向切面的接口。通常Spring等其它具备动态织入功能的框架依赖此包。
aspectjweaver-1.5.0.jar —— 用于在Spring 中集成AspectJ AspectJ LTW织入器
cglib-3.1.jar —— cglib代理 实现AOP的一种方式
commons-collections-3.2.2.jar —— Apache Commons包中的一个,包含了一些Apache开发的集合类,功能比java.util.*强大。
commons-dbcp-1.2.1.jar —— DBCP数据库连接池
commons-logging-1.1.1.jar —— Apache Commons包中的一个,包含了日志功能
commons-pool-1.6.jar —— DBCP是一个依赖commons-pool对象池机制的数据库连接池
standard.jar —— JSP 标准标签库,和jstl.jar 一起使用,jstl-1.2.jar 不在需要。

 

 

新建一个springBoot项目时,你会选择很多依赖,在这里列举一下各种start:

1、spring-boot-starter
  Spring Boot核心starter,包含自动配置、日志、yal配置文件支持
2、spring-boot-starter-actuator
  准生产特性、用于监控和管理应用
3、spring-boot-starter-remote-shell
  提供基于ssh协议的监控和管理
4、spring-boot-starter-amqp
  使用spring-rabbitlai zhichi AMQP
5、spring-boot-starter-aop
  使用spring-aop和AspectJ支持面向切面编程
6、spring-boot-starter-batch
  对Spring Batch的支持
7、spring-boot-starter-cache
  对Spring Cache的抽象支持
8、spring-boot-starter-cloud-connectors
  对云平台(Cloud Foundry、Heroku)提供的服务提供简化的连接方式
9、spring-boot-starter-data-elasticsearch
  通过spring-data-elasticsearch对Elasticsearch支持
10、spring-boot-starter-data-gemfire
  通过spring-data-gemfire对分布式存储GemFire的支持
11、spring-boot-starter-data-jpa
  对JPA的支持,包含spring-data-jpa、spring-orm和hibernate
12、spring-boot-starter-mongodb
  通过spring-data-mongodb,对mongodb的支持
13、spring-boot-starter-rest
  通过spring-data-rest-webmvc将Spring Data repository暴露为REST形式服务
14、spring-boot-starter-solr
  通过spring-data-solr对Apache Solr数据检索的支持
15、spring-boot-starter-freemarker
  对Freemarker模板引擎的支持
16、spring-boot-starter-groovy-templates
  通过spring-hateoas对基于HATEOAS的REST形式网络服务支持
17、spring-boot-starter-hornetq
  通过HornetQ对JMS的支持
18、spring-boot-starter-integration
  对系统集成框架spring-integration支持
19、spring-boot-starter-jdbc
  对JDBC数据库的支持
20、spring-boot-starter-jersey
  对Jersery REST形式网络服务支持
21、spring-boot-starter-jta-atomikos
  通过Atomikos对分布式事务的支持
22、spring-boot-starter-mail
  对javax.mail的支持
23、spring-boot-starter-mobile
  对spring-mobile的支持
24、spring-boot-starter-mustache
  对Mustache模板引擎的支持
25、spring-boot-starter-redis
  对Redis的支持,包含spring-redis
26、spring-boot-starter-security
  对spring-security的支持
27、spring-boot-starter-social-facebook
  对Facebook支持
28、spring-boot-starter-social-linkedin
  对linkedin支持
29、spring-boot-starter-social-twitter
  对Twitter支持
30、spring-boot-starter-test
  对常用测试框架JUnit、Hamcrest和Mockito的支持,包含spring-test模块
31、spring-boot-starter-thymeleaf
  对Thymeleaf模板引擎的支持,包含于Spring整合的配置
32、spring-boot-starter-velocity
  对Velocity模板引擎的支持
33、spring-boot-starter-web
  对Web项目开发支持,包含Tomcat和Spring MVC
34、spring-boot-starter-Tomcat
  Spring Boot默认Servlet容器
35、spring-boot-starter-Jetty
  使用Jetty作为Servlet容器
36、spring-boot-starter-undertow
  使用Undertow作为Servlet容器
37、spring-boot-starter-logging
  Spring Boot默认日志框架logback
38、spring-boot-starter-log4j
  支持使用Log4J日志框架
39、spring-boot-starter-websocket
  对websocket的支持
40、spring-boot-starter-ws
  对Spring Web Service支持

你可能感兴趣的:(搭建Spring所需的各类jar包及SpringBoot-starter汇总)