标签:blog document targe target ted 就是 管理 方法 动态
一句话概括就是 @Configuration 中所有带 @Bean 注解的方法都会被动态代理,因此调用该方法返回的都是同一个实例。
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
String value() default "";
}
从定义来看, @Configuration 注解本质上还是 @Component,因此
@Configuration 标记的类必须符合下面的要求:
参考:Spring @Configuration 和 @Component 区别
标签:blog document targe target ted 就是 管理 方法 动态
原文地址:https://www.cnblogs.com/liaoguanwang/p/10242202.html