@Configuration 和 @Component 的区别, 以及lite mode
Posted kikochz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Configuration 和 @Component 的区别, 以及lite mode相关的知识,希望对你有一定的参考价值。
Instead,when one {@code @Bean}-method invokes another {@code @Bean}-method in lite
mode, the invocation is a standard Java method invocation; Spring does not interceptthe invocation via a CGLIB proxy.
如果@Component下使用@Bean, 并通过调用方法来获取JavaBean, 那么每次获取到都是新的JavaBean, 不是单例生产的JavaBean, 这种模式就是lite mode
, @Configuration是同一个.
以上是关于@Configuration 和 @Component 的区别, 以及lite mode的主要内容,如果未能解决你的问题,请参考以下文章
@configuration和@component之间的区别
Spring--@configuration 和 @Bean