Spring 注解--IOC篇

Posted javabeginer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 注解--IOC篇相关的知识,希望对你有一定的参考价值。

[email protected]&@Bean给容器中注册组件

前者相当于beans,如果嵌套的话必须是内部静态类。

[email protected]自动扫描组件&指定扫描规则 

相当于开启了自动扫描包的功能。

3自定义TypeFilter指定过滤规则

刻个在ComponentScan扫描是附加和排除。TypeFilter自定义附加和排除

[email protected]设置组件作用域

配置bean 的生命周期

 [email protected]按照条件注册bean

适用于选择不同的bean

[email protected]给容器中快速导入一个组件

相当于快速导入一个组件,或者类。

[email protected]使用ImportSelector

导入多个组件可以使用ImportSelector

[email protected]使用ImportBeanDefinitionRegistrar

可以用方式BeanDefinition注册bean组件。

9使用FactoryBean注册组件

注意和BanFactory的区别,关键看后面的一个单词。一个是Bean ,一个是Factory。获取FactoryBean 需要前面加个&

[email protected]指定初始化和销毁方法InitializingBean和[email protected]&@PreDestroy

单纯的单个@bean的前置后置方法。

11BeanPostProcessor-后置处理器

多个@bean的前置后置方法

 

12BeanPostProcessor在Spring底层的使用

拿到Bean可以做想做的事

https://blog.csdn.net/csdn_kenneth/article/details/83477917

 

[email protected]赋值@PropertySource加载外部配置文件

两者配合使用。@ProperSource于@ImportSource的区别:前者是properties,后者是xml。

https://blog.csdn.net/qq_28580959/article/details/53926874

https://blog.csdn.net/qq_28580959/article/details/60129329

以上是关于Spring 注解--IOC篇的主要内容,如果未能解决你的问题,请参考以下文章

spring学习3:spring ioc的纯注解配置

java框架篇---spring IOC依赖注入

Spring入门篇

Spring框架学习之IOC

Spring使用大全

Spring我抄袭了Spring,手写一套MySpring框架。。。