Spring管理Bean方式

一:IOC(控制反转)基础概念

ioc的思想最核心的地方在于,资源不由使用资源的双方管理,而由不使用资源的第三方管理,这可以带来很多好处。

第一,资源集中管理,实现资源的可配置和一管理。

第二,降低了使用资源双方的依赖程度(耦合度)。


二:Spring IOC 容器底层注解使用(基于AnnotationConfigApplicationContext举例)

2.1)@Bean

@Configurationpublic

class MainConfig {

    @Bean

     public Person person() {

        return new Person();

    }

}

通过@Bean形式注入的话,bean默认名称是方法名,可以通过@Bean(value="bean的名称")指定名称

2.2)@CompentScan(结合@Controller@Service@Repository@Compent)

@Configuration

@ComponentScan(basePackages = {"com.testcompentscan"})

public class MainConfig {}

结合excludeFilters排除

@ComponentScan(

basePackages = {"com.testcompentscan"},

excludeFilters = {

@ComponentScan.Filter(type = FilterType.ANNOTATION,value = {Controller.class}),

@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE,value = {TestService.class})

})

@ComponentScan.Filter type类型

1)注解形式的FilterType.ANNOTATION @Controller @Service @Repository @Compent

2)指定类型的FilterType.ASSIGNABLE_TYPE TestService.class

3)aspectj类型的FilterType.ASPECTJ(不常用)

4)正则表达式的FilterType.REGEX(不常用)

5)自定义的FilterType.CUSTOM 自定义类实现TypeFilter接口并过滤

2.3)Bean的作用域

1)@Scope指定的作用域方法取值

a) singleton 单实例的(默认)

b) prototype 多实例的 

c) request 同一次请求(不常用)

d) session 同一个会话级别(不常用)


2)@Lazy可以针对单实例Bean懒加载


3)@Conditional进行条件判断,当条件满足时Spring才管理该类(SpringBoot中大量使用了该注解)


2.4)@Import导入组件

@Import(value = {Person.class, Car.class})

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

通过@Import的 ImportBeanDefinitionRegister导入组件 (可以指定bean的名称)

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

2.5)Bean的初始化方法和销毁方法

仅单实例bean有效,多例不由Spring管理

@Bean(initMethod = "init",destroyMethod = "destroy")

通过 InitializingBean和DisposableBean 的二个接口实现bean的初始化以及销毁方法

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

通过Spring的BeanPostProcessor的bean的后置处理器会拦截所有bean创建过程

​初始化方法执行先后顺序

applyBeanPostProcessorsBeforeInitialization()

invokeInitMethods{

    isInitializingBean.afterPropertiesSet

    自定义的init方法

}

applyBeanPostProcessorsAfterInitialization()

2.6)自动装配@AutoWired

自动装配首先时按照类型进行装配,若在IOC容器中发现了多个相同类型的组件,那么就按照 属性名称来进行装配,可以通过@Qualifier("属性名")来指定

2.7)使用Spring底层组件(通过实现XXXAware接口)


2.8)通过@Profile注解,来根据环境来激活表示不同的Bean


切换环境的方法

a)通过运行时jvm参数来切换 -Dspring.profiles.active=test|dev|prod

b)通过代码的方式来激活

你可能感兴趣的:(Spring管理Bean方式)