前言
Spring是什么?
内在本质——component container
History of Spring Framework and Spring BootIt currently consists of a large number of modules providing a range of services. These include a component container, aspect oriented programming support for building cross cutting concerns, security framework, data access framework, web application framework and support classes for testing components. All the components of the spring framework are glued together by the dependency injection architecture pattern. Dependency injection(also known as inversion of control) makes it easy to design and test loosely coupled software components. 依赖注入的关键就是有一个component container//bean container/IOC container,它持有所有对象的实例,负责所有对象的创建和销毁问题,在创建对象时可以夹一点自己的私货。
外在表现
- 是一个应用平台,它不像hibernate等只是解决某一个领域的问题,它对企业应用资源(比如数据库、事务处理等)都提供了简化的、模板化的操作方式。类似于os简化了我们对计算机各种硬件资源的使用。
-
简化了J2EE开发。用户使用POJO或者简单的javabean即可实现复杂的业务需求。POJO类有一些属性及其getter setter方法的类,基本没有业务逻辑,不具有任何特殊角色和不继承或不实现任何其它Java框架的类或接口。(model,dao,service,controller其实都是POJO类)一个项目仅依靠pojo类和几个配置文件来描述,用不着复杂的开发模型和编程模式。
这种简化还体现在,spring对数据库(mysql或hbase等)、缓存(redis等)、队列(rabbitmq)、协作框架(Zookeeper等)和RPC框架(thrift等)都有着很好的支持。这些组件现在是构建一个大型系统的必备要素。
2017.7.27 更新
面向对象出来之后,一个项目的代码通常由一系列对象组成,而理解一个项目的难点变成了:如何理解对象之间复杂的依赖关系。读过netty源码的都知道,channel、pipeline、eventloop三个组件之间,复杂的依赖关系,简直不忍直视。比如A依赖B,B可以作为A的成员、方法参数等,而Spring统一成了一种:B作为A的成员。c、go之类,即便按照面向对象的思路来编程,因为没有类似spring的组件,业务本身的复杂性 + 对象之间的复杂的依赖关系,增加了理解的难度。
IoC 容器控制了对象;控制什么呢?那就是主要控制了外部资源获取。包括
-
对象
- 对象可以直接创建
- 对象由复杂的构造过程,比如FactoryBean/代理实现。
- 第三方自定义xsd,自定义NamespaceHandler,并将创建的对象加入到容器中
-
配置文件等,我们获取一个配置,不用自己读取文件、解析文件,直接在类中@value就搞定了。本质上还是创建对象时,顺带处理其需要的各方面资源。component container 不仅是object container,也是property container.
得益于此,我们可以聚焦于拿到对象做什么事(也就是侧重业务),而对象如何创建,则交给框架或框架扩展的一部分。
ioc 带来的改变:“解耦”
假设有两个类A和B
class A{
private B b;
void fun(){
创建b对象
b.fun2()
}
public void setB(B b){
this.b = b;
}
}
class B{
void fun2(){}
}
在A的fun方法中,为调用b的fun2方法,需要先创建b对象,如果b对象的创建过程比较复杂(比如B还依赖其它类,那么还要先创建其他类),a.fun
方法将非常臃肿,并且大部分代码都有点“不务正业”(都花在创建b对象上了),事实上,a.fun
方法只是想单纯的运行b.fun2()
。
按照书中的说法:许多非凡的应用都是由两个或多个类通过彼此的合作来实现业务逻辑的,这使得每个对象都需要与其合作的对象的引用(有时候这个获取过程会占用多行代码)。如果这个获取过程要靠自身实现,将导致代码高度耦合并且难以测试。
控制反转后,A类中B类引用的获得,不再是new(很多时候,new是不够的,需要多个操作才能获取一个可用的B实例),而是“别人”调用A类的set方法。如果,把面向对象编程中需要执行的诸如新建对象、为对象引用赋值等操作交由容器统一完成,这样一来,这些散落在不同代码中的功能相同的部分(也就是上述代码中“创建b对象”和”setB”部分)就集中成为容器的一部分,也就是成为面向对象系统的基础设施的一部分。(话说,如果大部分框架也使用spring实现该多好啊,至少容易看懂)
IOC设计模式的两个重要支持:
- 对象间依赖关系的建立和应用系统的运行状态没有很强的关联性,因此对象的依赖关系可以在启动时建立好,ioc容器(负责建立对象的依赖关系)不会对应用系统有很强的侵入性。
- 面向对象系统中,除了一部分对象是数据对象外,其他很大一部分是用来处理数据的,这些对象并不经常发生变化,在系统中以单件的形式起作用就可以满足应用的需求。
ioc的实现不只spring一种,可以多方对比观察。谷歌的guice也是一个ioc实现
configUtil = InjectorUtils.getInstance(ConfigUtil.class);
对应到spring
configUtil = (ConfigUtil)beanFactory.getBean("configUtil");
ioc的实现
什么是ioc容器?
BeanFactory是最简单的ioc容器,看了BeanFactory接口方法,也许会更直观(主要包括获取bean、查询bean的特性等方法)。
interface BeanFactory{
FACTORY_BEAN_PREFIX
object getBean(String)
T getBean(String,Class<T>)
T getBean(Class<T>)
boolean containsBean(String)
boolean isSingleton(String)
boolean isPrototype(String)
boolean isTypeMatch(String,Class<T>)
class<?> getType(String)
String[] getAliases
}
当然,ioc在实现上述功能之前,必须要先初始化,从某个源(比如xml配置文件)中加载bean信息。ioc容器对针对bean的不同(比如bean是否是单例),对bean的实例化有不同的处理,下面排除各种特例,描述下最常见的bean实例化过程。
-
ioc初始化
BeanFactory bf = new XmlBeanFactory(new ClassPathResource("beans.xml"));
- 验证并加载xml文件
- 依次读取
<bean></bean>
(或扫描所有java类中的注解信息),并将其信息转化为BeanDefinition类(将bean信息由文本存储方式转换为内存存储(以java类的形式存在))
-
执行
bf.getBean("beanid")
得到bean的实例- 根据beanid获取到相应的BeanDefinition
- 根据BeanDefinition创建bean实例(此时还未注入属性)
- 属性(包括其依赖对象)注入
ioc在实例化bean的过程中,还夹了不少“私货”,也称之为装配wire:
- 在属性或依赖注入逻辑的前后留有处理函数(或回调函数)
- 如果bean实现了一些接口,ioc将其注入该接口指定的属性
bean在不同阶段的表现形式
表现形式 | |
---|---|
配置文件 | <bean class=""></bean> |
ioc初始化 | BeanDefinition |
getBean | Object |
就像jvm不会为classpath下的每一个类文件都生成实例一样,ioc也不会将applicaton-context.xml中的每一个<bean></bean>
都生成实例。同时,jvm将class文件加载成class文件暂存,ioc则是将<bean></bean>
加载为BeanDefinition管理。
BeanFactory
属于spring-beans包
The root interface for accessing a Spring bean container.This is the basic client view of a bean container;The point of this approach is that the BeanFactory is a central registry of application components, and centralizes configuration of application components (no more do individual objects need to read properties files,for example).
Note that it is generally better to rely on Dependency Injection(“push” configuration) to configure application objects through setters or constructors, rather than use any form of “pull” configuration like a BeanFactory lookup. Spring’s Dependency Injection functionality is implemented using this BeanFactory interface and its subinterfaces.
- 作为一个BeanFactory,要能够getBean、createBean、autowireBean、根据各种Bean的信息检索list bean、支持父子关系,这些能力被分散在各个接口中
- AbstractBeanFactory 负责实现BeanFactory,同时留了一些抽象方法交给子类实现
- 如何对 BeanFactory 施加影响?BeanPostProcessor,Factory hook that allows for custom modification of new bean instances,e.g. checking for marker interfaces or wrapping them with proxies.
ApplicationContext
属于spring-context包
In contrast to a plain BeanFactory, an ApplicationContext is supposed to detect special beans(BeanFactoryPostProcessor/BeanPostProcessor/ApplicationListener)defined in its internal bean factory
public abstract class AbstractApplicationContext{
public void refresh(){
...
prepareBeanFactory(beanFactory);
...
registerBeanPostProcessors(beanFactory);
...
}
protected void prepareBeanFactory(ConfigurableListableBeanFactory beanFactory) {
...
beanFactory.addBeanPostProcessor(new ApplicationContextAwareProcessor(this));
...
}
}
beanFactory.addBeanPostProcessor(new ApplicationContextAwareProcessor(this));
ApplicationContextAwareProcessor是一个BeanPostProcessor,其作用就是当发现 一个类实现了ApplicationContextAware等接口时,为该类注入ApplicationContext 成员。
public static void registerBeanPostProcessors(...){
String[] postProcessorNames = beanFactory.getBeanNamesForType(BeanPostProcessor.class, true, false);
...
for (String ppName : postProcessorNames) {
BeanPostProcessor pp = beanFactory.getBean(ppName, BeanPostProcessor.class);
priorityOrderedPostProcessors.add(pp);
}
...
registerBeanPostProcessors(beanFactory,priorityOrderedPostProcessors);
}
BeanFactory VS ApplicationContext
ApplicationContexts can autodetect BeanPostProcessor beans in their bean definitions and apply them to any beans subsequently created.Plain bean factories allow for programmatic registration of post-processors,applying to all beans created through this factory.
可以说,BeanFactory 基本实现了一个bean container 需要的所有功能,但其一些特性要programmatic,ApplicationContext在简单容器BeanFactory的基础上,增加了许多面向框架的特性。《Spring技术内幕》中参照XmlBeanFactory的实现,以编程方式使用DefaultListableBeanFactory,从中我们可以看到Ioc容器使用的一些基本过程。
ClassPathResource res = new ClassPathResource("beans.xml");
DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(factory);
reader.loadBeanDefinitions(res);
简单来说,reader.loadBeanDefinitions(res);
将类信息从beans.xml
读取到DefaultListableBeanFactory及其父类的各种map中。然后factory.getBean
时即可做出对应的反应。
细说BeanDefinition
public abstract class AbstractBeanDefinition extends BeanMetadataAttributeAccessor
implements BeanDefinition, Cloneable {
private volatile Object beanClass;
private String scope = SCOPE_DEFAULT;
private boolean singleton = true;
private boolean prototype = false;
private boolean abstractFlag = false;
private boolean lazyInit = false;
private int autowireMode = AUTOWIRE_NO;
private int dependencyCheck = DEPENDENCY_CHECK_NONE;
private String[] dependsOn;
private boolean autowireCandidate = true;
private boolean primary = false;
private final Map<String, AutowireCandidateQualifier> qualifiers =
new LinkedHashMap<String, AutowireCandidateQualifier>(0);
private boolean nonPublicAccessAllowed = true;
private boolean lenientConstructorResolution = true;
private ConstructorArgumentValues constructorArgumentValues;
private MutablePropertyValues propertyValues;
private MethodOverrides methodOverrides = new MethodOverrides();
private String factoryBeanName;
private String factoryMethodName;
private String initMethodName;
private String destroyMethodName;
private boolean enforceInitMethod = true;
private boolean enforceDestroyMethod = true;
private boolean synthetic = false;
private int role = BeanDefinition.ROLE_APPLICATION;
private String description;
private Resource resource;
}
首先要将配置文件描述的bean信息加载到内存中,再根据这些信息构建bean实例,这些信息在内存中的存在形式便是BeanDefinition。spring ioc的基本功能可由以下过程实现:
- 将BeanDefinition(以配置文件,注解形式存在)加载到内存
- 根据BeanDefinition创建并管理bean实例以及它们之间的依赖
创建bean实例的几种方式:
- class.newInstance,然后为其各种属性赋值
- FactoryBean.getBean
- Proxy.newProxyInstance
- BeanDefinition
BeanDefinition的几种来源
-
xml解析,对应BeanDefinitionParser
<bean></bean>
直接解析<tx:annotation-driven transaction-manager="txManager" />
系统解析到该配置后,会根据配置,手动register若干个BeanDefinition
-
注解扫描
Bean的管理Environment
Interface representing the environment in which the current application is running.Models two key aspects of the application environment: profiles and properties. Environment代表着程序的运行环境,主要包含了两种信息,一种是profiles,用来描述哪些bean definitions 是可用的;一种是properties,用来描述系统的配置,其来源可能是配置文件、jvm属性文件、操作系统环境变量等。
并不是所有的Bean 都会被纳入到ioc管理,A profile is a named, logical group of bean definitions to be registered with the container only if the given profile is active. Beans may be assigned to a profile whether defined in XML or via annotations; see the spring-beans 3.1 schema or the @Profile annotation for syntax details.
Properties play an important role in almost all applications,and may originate from a variety of sources: properties files, JVM system properties, system environment variables, JNDI, servlet context parameters, ad-hoc Properties objects,Maps, and so on. The role of the environment object with relation to properties is to provide the user with a convenient service interface for configuring property sources and resolving properties from them.