@Configuration註解的類:java
/** * @Description 測試用的配置類 * @Author 弟中弟 * @CreateTime 2019/6/18 14:35 */
@Configuration
public class MyBeanConfig {
@Bean
public Country country(){
return new Country();
}
@Bean
public UserInfo userInfo(){
return new UserInfo(country());
}
}
複製代碼
@Component註解的類:spring
/** * @Description 測試用的配置類 * @Author 弟中弟 * @CreateTime 2019/6/18 14:36 */
@Component
public class MyBeanConfig {
@Bean
public Country country(){
return new Country();
}
@Bean
public UserInfo userInfo(){
return new UserInfo(country());
}
}
複製代碼
測試:bash
@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoTest {
@Autowired
private Country country;
@Autowired
private UserInfo userInfo;
@Test
public void myTest() {
boolean result = userInfo.getCountry() == country;
System.out.println(result ? "同一個country" : "不一樣的country");
}
}
複製代碼
若是是@Configuration打印出來的則是同一個country,@Component則是不一樣的country,這是爲何呢?測試
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
@AliasFor(
annotation = Component.class
)
String value() default "";
}
複製代碼
你點開@Configuration會發現其實他也是被@Component修飾的,所以context:component-scan/ 或者 @ComponentScan都能處理@Configuration註解的類。spa
@Configuration標記的類必須符合下面的要求:.net
配置類必須以類的形式提供(不能是工廠方法返回的實例),容許經過生成子類在運行時加強(cglib 動態代理)。代理
配置類不能是 final 類(無法動態代理)。code
配置註解一般爲了經過 @Bean 註解生成 Spring 容器管理的類,component
配置類必須是非本地的(即不能在方法中聲明,不能是 private)。xml
任何嵌套配置類都必須聲明爲static。
@Bean 方法可能不會反過來建立進一步的配置類(也就是返回的 bean 若是帶有
@Configuration,也不會被特殊處理,只會做爲普通的 bean)。
可是spring容器在啓動時有個專門處理@Configuration的類,會對@Configuration修飾的類cglib動態代理進行加強,這也是@Configuration爲何須要符合上面的要求中的部分緣由,那具體會加強什麼呢? 這裏是我的整理的思路 若是有錯請指點
userInfo()中調用了country(),由於是方法那必然country()生成新的new contry(),因此動態代理增長就會對其進行判斷若是userInfo中調用的方法還有@Bean修飾,那就會直接調用spring容器中的country實例,再也不調用country(),那必然是一個對象了,由於spring容器中的bean默認是單例。不理解好比xml配置的bean
<bean id="country" class="com.hhh.demo.Country" scope="singleton"/>
複製代碼
這裏scope默認是單例。
以上是我的理解,詳情源碼的分析請看https://www.jb51.net/article/153430.htm
/** * @Description 測試用的配置類 * @Author 弟中弟 * @CreateTime 2019/6/18 14:36 */
@Component
public class MyBeanConfig {
@Autowired
private Country country;
@Bean
public Country country(){
return new Country();
}
@Bean
public UserInfo userInfo(){
return new UserInfo(country);
}
}
複製代碼
這樣就保證是同一個Country實例了
若是有錯請大佬們指點 謝謝 0.0