Spring注解中@Configuration和@Configurable的区别
Posted fanrenren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring注解中@Configuration和@Configurable的区别相关的知识,希望对你有一定的参考价值。
@Configuration
该注解是可以用来替代XML文件。
以前我们配置bean时,都是写在applicationContext.xml文件中的。
有了这个注解后,我们就可以编写一个类在其上面加上该注解。即配置类。
在配置类中可以在方法上加@Bean注解定义其中的Bean
@Configurable
现在假设,我们想在非Spring管理的类中使用依赖注入;
比如:手动new出来的对象,正常情况下,Spring是无法依赖注入的,这个时候可以使用@Configurable注解;
以上是关于Spring注解中@Configuration和@Configurable的区别的主要内容,如果未能解决你的问题,请参考以下文章
[Spring6.0源码解析]简述@Configuration注解
Spring--@configuration 和 @Bean
Spring Boot中常用注解@Configuration,@Component,@Service,@Controller的区别
Spring中的@Configuration注解你真的了解吗?