图灵架构师第三期(笔记).doc -> zip

一:Spring框架功能整体介绍

image.png
1: Spring Core Container:
模块作用:CoreBeans模块是框架的基础部分,提供 IoC (转控制)和依赖注入特性。 这里的基础概念是BeanFactory,它提供对 Factory 模式的经典实 现来消除对程序单例模式的需要,并真正地允许你从程序逻辑中分离出依赖关系和配置
1.1) Core
主要包含 Spring 框架基本的核心工具类,Spring 的其他组件都要用到这个包里的类 Core 模块是其他组件的基本核心。
1.2)Beans (BeanFacotry的作用)
它包含访问配直文件、创建和管理 bean 以及进行 Inversion of Control / Dependency Injection ( IoC/DI )操作相关的所有类
1.3) Context(处理BeanFactory,以下还是ApplicationContext的作用)
模构建于Core Beans 模块基础之上,提供了一种类似JNDI 注册器的框 架式的对象访问方法。 Context 模块继承了Beans的特性,为Spring核心提供了大量扩展,添加了国际化(例如资源绑定)、事件传播、资源加载和对 Context 的透明创 建的支持。 Context 模块同时 也支持 J2EE 的一些特 性, ApplicationContext 接口是 Context 模块的关键
本质区别:(使用BeanFacotrybean是延时加载的,ApplicationContext是非延时加载的)
1.4)Expression Language
模块提供了强大的表达式语言,用于在运行时查询和操纵对象。 它是JSP 2.1规范中定义的 unifed expression language 的扩展。该语言支持设直/获取属 性的值,属性的分配,方法的调用,访问数 组上下文( accessiong the context of arrays )、容器和索引器、逻辑和算术运算符、命名变量以及从Spring的 IoC 容器中根据名称检索对象。 它也支持 list 投影、选择和一般的 list 聚合.

2: Spring Data Access/Integration
2.1)JDBC
模块提供了一个 JDBC 抽象层,它可以消除冗长的 JDBC 编码和解析数据库厂 商特有的错误代码。 这个模块包含了 Spring 对 JDBC 数据访问进行封装的所有类
2.2)ORM 模块为流行的对象-关系映射 API
如 JPA、 JDO、 Hibernate、 iBatis 等,提供了 一个交互层。 利用 ORM 封装包,可以混合使用所 有 Spring 提供的特性进行 O/R 映射, 如前边提到的简单声 明性事务管理。
2.3)OXM 模块提供了一个对 ObjecνXML 映射实现的抽象层, Object/XML 映射实现包括 JAXB、 Castor、 XMLBeans、 JiBX 和 XStrearn
2.4)JMS ( Java Messaging Service )
模块主要包含了 一些制造和消 费消息的特性。
2.5) Transaction
支持编程和声明性的事务管理,这些事务类必须实现特定的接口,并 且对所有的 POJO 都适用
3: Spring Web Web 模块
提供了基础的面向 Web 的集成特性c 例如,多文件上传、使用 servlet listeners 初始化 IoC 容器以及一个面向 Web 的应用上下文。 它还包含 Spring 远程支持中 Web 的相关部分。
4: Spring Aop
4.1)Aspects 模块提供了对 AspectJ 的集成支持。
4.2)Instrumentation 模块提供了 class instrumentation 支持和 classloader 实现,使得可以在特 定的应用服务器上使用
5:Test Test
模块支持使用 JUnit 和 TestNG 对 Spring 组件进行测试
6:Spring 容器继承图:
image.png
7:控制反转和依赖注入
7.1)什么是控制反转?我觉得有必要先了解软件设计的一个重要思想:依赖倒置原则(Dependency Inversion Principle )
①:什么是依赖倒置原则?假设我们设计一辆汽车:先设计轮子,然后根据轮子大小设计底盘,接着根据底 盘设计车身,最后根据车身设计好整个汽车。这里就出现了一个“依赖”关系:汽车依赖车身,车身依赖 底盘,底盘依赖轮子

IOC容器的最最最最核心思想..
ioc的思想最核心的地方在于,资源不由使用资源的双方管理,而由不使用资源的第三方管理,这可以带来很多好处。第 一,资源集中管理,实现资源的可配置和易管理。第二,降低了使用资源双方的依赖程度,也就是我们说的耦合度

二:Spring IOC 容器底层注解使用

2.1)xml配置文件的形式 VS 配置类的形式

①:基于xml的形式定义Bean的信息

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. //定义一个Bean的信息
  7. <bean id="car" class="com.tuling.compent.Car"></bean>
  8. </beans>

去容器中读取Bean

  1. public static void main( String[] args ){
  2. ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
  3. System.out.println(ctx.getBean("person"));
  4. }

②:基于读取配置类的形式定义Bean信息

  1. @Configuration
  2. public class MainConfig {
  3. @Bean
  4. public Person person(){
  5. return new Person();
  6. }
  7. }

注意: 通过@Bean的形式是使用的话, bean的默认名称是方法名,若@Bean(value=”bean的名称”) 那么bean的名称是指定的,可以指定多个name

去容器中读取Bean的信息(传入配置类)

  1. public static void main( String[] args ){
  2. AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MainConfig.class);
  3. System.out.println(ctx.getBean("person"));
  4. }

2.2)在配置类上写@CompentScan注解来进行包扫描

  1. @Configuration
  2. @ComponentScan(basePackages = {"com.tuling.testcompentscan"})
  3. public class MainConfig {
  4. }

①:排除用法 excludeFilters(排除@Controller注解的,和TulingService的)

  1. @Configuration
  2. @ComponentScan(basePackages = {"com.tuling.testcompentscan"},excludeFilters = {
  3. @ComponentScan.Filter(type = FilterType.ANNOTATION,value = {Controller.class}),
  4. @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE,value = {TulingService.class})
  5. })
  6. public class MainConfig {
  7. }

②:包含用法 includeFilters ,注意,若使用包含的用法,需要把useDefaultFilters属性设置为false(true表示扫描全部的

  1. @Configuration
  2. @ComponentScan(basePackages = {"com.tuling.testcompentscan"},includeFilters = {
  3. @ComponentScan.Filter(type = FilterType.ANNOTATION,value = {Controller.class, Service.class})
  4. },useDefaultFilters = false)
  5. public class MainConfig {
  6. }

使用@ComponentScan,排除不扫描的使用excludeFilters,如下面中的

  1. @ComponentScan(basePackages = {"com.tuling.testcompentscan"},excludeFilters = {
  2. // 不扫描带Controller注解的
  3. @ComponentScan.Filter(type = FilterType.ANNOTATION,value = {Controller.class}),
  4. // 不扫描 类 TulingService
  5. @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE,value = {TulingService.class})
  6. })

③ @ComponentScan.Filter type的类型
a)注解形式的FilterType.ANNOTATION @Controller @Service @Repository @Compent
b)指定类型的 FilterType.ASSIGNABLE_TYPE @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE,value = {TulingService.class})
c)aspectj类型的 FilterType.ASPECTJ(不常用)
d)正则表达式的 FilterType.REGEX(不常用)
e)自定义的 FilterType.CUSTOM
使用@ComponentScan,添加自定义扫描,使用FilterType.CUSTOM,如下面的

  1. @ComponentScan(basePackages = {"com.tuling.testcompentscan"},excludeFilters = {
  2. //@ComponentScan.Filter(type = FilterType.ANNOTATION,value = {Controller.class, Service.class}),
  3. @ComponentScan.Filter(type = FilterType.CUSTOM,value = TulingFilterType.class)
  4. },includeFilters = {
  5. @ComponentScan.Filter(type = FilterType.ANNOTATION,value = Repository.class)
  6. })

③.①FilterType.CUSTOM 自定义类型如何使用

  1. import org.springframework.core.io.Resource;
  2. import org.springframework.core.type.AnnotationMetadata;
  3. import org.springframework.core.type.ClassMetadata;
  4. import org.springframework.core.type.classreading.MetadataReader;
  5. import org.springframework.core.type.classreading.MetadataReaderFactory;
  6. import org.springframework.core.type.filter.TypeFilter;
  7. import java.io.IOException;
  8. /**
  9. * Created by smlz on 2019/5/19.
  10. */
  11. public class TulingFilterType implements TypeFilter {
  12. @Override
  13. public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
  14. //获取当前类的注解源信息
  15. AnnotationMetadata annotationMetadata = metadataReader.getAnnotationMetadata();
  16. //获取当前类的class的源信息
  17. ClassMetadata classMetadata = metadataReader.getClassMetadata();
  18. //获取当前类的资源信息
  19. Resource resource = metadataReader.getResource();
  20. System.out.println("类的路径:"+classMetadata.getClassName());
  21. if(classMetadata.getClassName().contains("dao")) {
  22. return true;
  23. }
  24. return false;
  25. }
  26. }
  1. @ComponentScan(basePackages = {"com.tuling.testcompentscan"},includeFilters = {
  2. @ComponentScan.Filter(type = FilterType.CUSTOM,value = TulingFilterType.class)
  3. },useDefaultFilters = false)
  4. public class MainConfig {
  5. }

2.3)配置Bean的作用域对象

①:在不指定@Scope的情况下,所有的bean都是单实例的bean,而且是饿汉加载(容器启动实例就创建好了)

  1. @Bean
  2. public Person person() {
  3. return new Person();
  4. }

②:指定@Scopeprototype 表示为多实例的,而且还是懒汉模式加载(IOC容器启动的时候,并不会创建对象,而是 在第一次使用的时候才会创建)

  1. @Bean
  2. @Scope(value = "prototype")
  3. public Person person() {
  4. return new Person();
  5. }

③:@Scope指定的作用域方法取值

  1. a) singleton 单实例的(默认)
  2. b) prototype 多实例的
  3. c) request 同一次请求
  4. d) session 同一个会话级别

2.4)Bean的懒加载@Lazy(主要针对单实例的bean 容器启动的时候,不创建对象,在第一次使用的时候才会创建该对象)

  1. @Bean
  2. @Lazy
  3. public Person person() {
  4. return new Person();
  5. }

2.5)@Conditional进行条件判断等.

场景,有二个组件TulingAspect TulingLog ,我的TulingLog组件是依赖于TulingAspect的组件
应用:自己创建一个TulingCondition的类实现Condition接口

  1. import org.springframework.context.annotation.Condition;
  2. import org.springframework.context.annotation.ConditionContext;
  3. import org.springframework.core.type.AnnotatedTypeMetadata;
  4. public class TulingCondition implements Condition {
  5. /**
  6. * @param context
  7. * @param metadata
  8. * @return
  9. */
  10. @Override
  11. public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
  12. //判断容器中是否有tulingAspect的组件
  13. if (context.getBeanFactory().containsBean("tulingAspect")) {
  14. return true;
  15. }
  16. return false;
  17. }
  18. }
  1. public class MainConfig {
  2. @Bean
  3. public TulingAspect tulingAspect() {
  4. return new TulingAspect();
  5. }
  6. //当容器中有tulingAspect的组件,那么tulingLog才会被实例化.
  7. @Bean
  8. @Conditional(value = TulingCondition.class)
  9. public TulingLog tulingLog() {
  10. return new TulingLog();
  11. }
  12. }

2.6)往IOC 容器中添加组件的方式 (四种方式)

①:通过@CompentScan +@Controller @Service @Respository @compent
适用场景: 针对我们自己写的组件可以通过该方式来进行加载到容器中。
②:通过@Bean的方式来导入组件(适用于导入第三方组件的类)
③:通过@Import来导入组件 (导入组件的id为全类名路径)

  1. @Configuration
  2. @Import(value = {Person.class, Car.class})
  3. public class MainConfig {
  4. }

通过@Import 的ImportSeletor类实现组件的导入 (导入组件的id为全类名路径)

  1. public class TulingImportSelector implements ImportSelector {
  2. /可以获取导入类的注解信息
  3. @Override
  4. public String[] selectImports(AnnotationMetadata importingClassMetadata) {
  5. return new String[]{"com.tuling.testimport.compent.Dog"};
  6. }
  7. }
  8. @Configuration
  9. @Import(value = {Person.class, Car.class, TulingImportSelector.class})
  10. public class MainConfig {
  11. }

④:通过实现FacotryBean接口来实现注册组件

  1. package com.tuling.testfactorybean;
  2. import org.springframework.beans.factory.FactoryBean;
  3. /**
  4. * 通过实现factoryBean接口往容器中注册组件
  5. */
  6. public class CarFactoryBean implements FactoryBean<Car> {
  7. @Override
  8. public Car getObject() throws Exception {
  9. return new Car();
  10. }
  11. @Override
  12. public Class<?> getObjectType() {
  13. return Car.class;
  14. }
  15. @Override
  16. public boolean isSingleton() {
  17. return false;
  18. }
  19. }

2.7)Bean的初始化方法和销毁方法.

①:什么是bean的生命周期?
bean的创建——->初始化——->销毁方法
由容器管理Bean的生命周期,我们可以通过自己指定bean的初始化方法和bean的销毁方法

  1. @Configuration
  2. public class MainConfig {
  3. //指定了bean的生命周期的初始化方法和销毁方法.
  4. @Bean(initMethod = "init",destroyMethod = "destroy")
  5. public Car car() {
  6. return new Car();
  7. }
  8. }

针对单实例bean的话,容器启动的时候,bean的对象就创建了,而且容器销毁的时候,也会调用Bean的销毁方法 针对多实例bean的话,容器启动的时候,bean是不会被创建的而是在获取bean的时候被创建,而且bean的销毁不受 IOC容器的管理.
②:通过 InitializingBeanDisposableBean 的二个接口实现bean的初始化以及销毁方法

  1. @Component
  2. public class Person implements InitializingBean,DisposableBean {
  3. public Person() {
  4. System.out.println("Person的构造方法");
  5. }
  6. @Override
  7. public void destroy() throws Exception {
  8. System.out.println("DisposableBean的destroy()方法 ");
  9. }
  10. @Override
  11. public void afterPropertiesSet() throws Exception {
  12. System.out.println("InitializingBean的 afterPropertiesSet方法");
  13. }
  14. }

③:通过JSR250规范 提供的注解@PostConstruct 和@ProDestory标注的方法

  1. @Component
  2. public class Book {
  3. public Book() {
  4. System.out.println("book 的构造方法");
  5. }
  6. @PostConstruct
  7. public void init() {
  8. System.out.println("book 的PostConstruct标志的方法");
  9. }
  10. @PreDestroy
  11. public void destory() {
  12. System.out.println("book 的PreDestory标注的方法");
  13. }
  14. }

④:通过SpringBeanPostProcessorbean的后置处理器会拦截所有bean创建过程
postProcessBeforeInitialization 在init方法之前调用
postProcessAfterInitialization 在init方法之后调用

  1. /**
  2. * 后置处理器 在bean调用初始化方法前后进行调用
  3. */
  4. @Component
  5. public class TulingBeanPostProcessor implements BeanPostProcessor {
  6. @Override
  7. public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
  8. System.out.println("TulingBeanPostProcessor...postProcessBeforeInitialization:"+beanName);
  9. return bean;
  10. }
  11. @Override
  12. public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
  13. System.out.println("TulingBeanPostProcessor...postProcessAfterInitialization:"+beanName);
  14. return bean;
  15. }
  16. }

2.8)通过@Value +@PropertySource来给组件赋值

  1. public class Person {
  2. //通过普通的方式
  3. @Value("司马")
  4. private String firstName;
  5. //spel方式来赋值
  6. @Value("#{28-8}")
  7. private Integer age;
  8. 通过读取外部配置文件的值
  9. @Value("${person.lastName}")
  10. private String lastName;
  11. }
  12. @Configuration
  13. @PropertySource(value = {"classpath:person.properties"}) //指定外部文件的位置
  14. public class MainConfig {
  15. @Bean
  16. public Person person() {
  17. return new Person();
  18. }
  19. }

2.9)自动装配

@AutoWired的使用
自动注入:

  1. //一个Dao
  2. @Repository
  3. public class TulingDao {
  4. }
  5. @Service
  6. public class TulingService {
  7. @Autowired
  8. private TulingDao tulingDao;

结论:
a:自动装配首先时按照类型进行装配,若在IOC容器中发现了多个相同类型的组件,那么就按照属性名称来进行装配
比如,我容器中有二个TulingDao类型的组件,一个叫tulingDao,一个叫tulingDao2
那么我们通过@AutoWired 来修饰的属性名称时tulingDao,那么拿就加载容器的tulingDao组件,若属性名称为 tulignDao2 那么他就加载的时tulingDao2组件
b:假设我们需要指定特定的组件来进行装配,我们可以通过使用@Qualifier(“tulingDao“)来指定装配的组件 或者在配置类上的@Bean加上@Primary注解

  1. @Autowired
  2. @Qualifier("tulingDao")
  3. private TulingDao tulingDao2;

3.0) 我们自己的组件 需要使用spring ioc的底层组件的时候,比如 ApplicationContext等

我们可以通过实现XXXAware接口来实现

  1. @Component
  2. public class TulingCompent implements ApplicationContextAware,BeanNameAware {
  3. private ApplicationContext applicationContext;
  4. @Override
  5. public void setBeanName(String name) {
  6. System.out.println("current bean name is :【"+name+"】");
  7. }
  8. @Override
  9. public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
  10. this.applicationContext = applicationContext;
  11. }
  12. }