WHY?
Java应用中有大量的对象,他们之间存在着依赖关系。虽然Java语言很强大易用,但却缺少模块整合的能力。虽然开发者们可以用自己的方法,比如:设计模式(Factory,Abstract Factory,Builder,Decorator, andService Locator)来组织整合系统中繁多的类和对象,这些设计模式通常需要解释是用来解决什么问题,什么场景下比较适用,并被冠以“xx最佳实践”。不过,设计模式确实是标准化的最佳实践,只不过这些模式都需要自己去实现。
Spring IOC组件就是为了解决这一问题而诞生的。它提供了一套可以直接应用于项目中的标准化的组件。Spring框架将设计模式作为一等公民集成到你的系统中。
IOC & DI
"The question is, what aspect of control are [they] inverting?" Martin Fowler在2004年提出了这个问题,他的粉丝建议给IOC起一个可以自解释的名字,因此IOC有了另一个名字Dependency Injection.
Spring的组成模块
Spring框架一共有20多个模块。按照功能分组为:Core Container, Data Access/Integration, Web, AOP (Aspect Oriented Programming), Instrumentation, Messaging, and Test. 如下图:
Core Container
spring-core,spring-beans,spring-context,spring-context-support, and spring-expression(Spring Expression Language) 这些模块组成了Core Container组。
spring-core and spring-beans 框架的基本部分,包括 IOC.
spring-context 基于core和beans,对象访问,增加初始化、事件冒泡、资源加 载。也支持J2EE的EJB和JMX特性。焦点:ApplicationContext
spring-context-support 为了引入第三方库到spring中来,如caching (EhCache, Guava, JCache),mailing (JavaMail),,scheduling (CommonJ, Quartz) 和模板引擎(FreeMarker, JasperReports, Velocity).
spring-expression 在运行时查询和操作对象的表达式语言。
AOP and Instrumentation
spring-aop AOP , method interceptors and pointcuts
spring-aspects AspectJ
spring-instrument 在某些特定应用服务器中用到的classloader
spring-instrument-tomcat tomcat的
Messaging
spring-messaging 提供消息处理能力。
Data Access/Integration
包括JDBC, ORM, OXM, JMS and Transaction模块
spring-jdbc jdbc的封装,避免冗长的JDBC编码
spring-tx 为实现了特殊接口的类提供编程和声明式的事务管理
spring-orm 集成流行的ORM API,包括JPA, JDO和Hibernate
spring-oxm 集成XML解析功能,如JAXB, Castor, XMLBeans, JiBX, XStream
spring-jms 消息服务
Web
包括spring-web,spring-webmvc,spring-websocket, and spring-webmvc-portlet模块
spring-web web功能集成,如多文件上传,web的ApplicationContext
spring-webmvc 又名web-servlet,MVC架构web开发,REST Web Service
spring-webmvc-portlet 又名web-porlet, Portlet环境下使用的spring-mvc
Test
spring-test Spring工程单元测试,可以获取ApplicationContext