Spring5注解驱动(七)

6. IOC小结

  • AnnotationConfigApplicationContext:

    • 配置类

    • 包扫描

  • 组件添加:

    • @ComponentScan

    • @Bean

      • 指定初始化销毁

      • 初始化其他方式

        • (1)InitializingBean(初始化设置值之后)

        • (2)InitializingBean(初始化设置值之后)

        • (3)JSR250:@PostConstruct、@PreDestroy

    • BeanPostProcessor

    • @Configuration

    • @Component

    • @Service

    • @Controller

    • @Repository

    • @Conditional

    • @Primary

    • @Lazy

    • @Scope

    • @Import

    • ImportSelector

    • 工厂模式

      • FactoryBean:&beanName获取Factory本身

  • 组件赋值

    • @Value

    • @Autowired

      • (1)@Qualifier

      • (2)@Resources(JSR250)

      • (3)@Inject(JSR330,需要导入javax.inject)

  • @PropertySource

  • @PropertySources

  • @Profile

    • (1)Environment

    • (2)-Dspring.profiles.active=test

  • 组件注入

    • 方法参数

    • 构造器注入

    • xxxAware

    • ApplicationContextAware

    • ApplicationContextAwareProcessor

if (bean instanceof Aware) {
			if (bean instanceof EnvironmentAware) {
				((EnvironmentAware) bean).setEnvironment(this.applicationContext.getEnvironment());
			}
			if (bean instanceof EmbeddedValueResolverAware) {
				((EmbeddedValueResolverAware) bean).setEmbeddedValueResolver(this.embeddedValueResolver);
			}
			if (bean instanceof ResourceLoaderAware) {
				((ResourceLoaderAware) bean).setResourceLoader(this.applicationContext);
			}
			if (bean instanceof ApplicationEventPublisherAware) {
				((ApplicationEventPublisherAware) bean).setApplicationEventPublisher(this.applicationContext);
			}
			if (bean instanceof MessageSourceAware) {
				((MessageSourceAware) bean).setMessageSource(this.applicationContext);
			}
			if (bean instanceof ApplicationContextAware) {
				((ApplicationContextAware) bean).setApplicationContext(this.applicationContext);
			}
		}

  • 4
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值