1. 程式人生 > >Spring中Bean的理解以及@Bean的作用

Spring中Bean的理解以及@Bean的作用

是把 ring con 通過 自動配置 面向對象 ava 符號 反射

一、Bean是啥

1、Java面向對象,對象有方法和屬性,那麽就需要對象實例來調用方法和屬性(即實例化);

2、凡是有方法或屬性的類都需要實例化,這樣才能具象化去使用這些方法和屬性;

3、規律:凡是子類及帶有方法或屬性的類都要加上註冊Bean到Spring IoC的註解;

4、把Bean理解為類的代理或代言人(實際上確實是通過反射、代理來實現的),這樣它就能代表類擁有該擁有的東西了

5、我們都在微博上@過某某,對方會優先看到這條信息,並給你反饋,那麽在Spring中,你標識一個@符號,那麽Spring就會來看看,並且從這裏拿到一個Bean或者給出一個Bean

二、註解分為兩類:

1、一類是使用Bean,即是把已經在xml文件中配置好的Bean拿來用,完成屬性、方法的組裝;比如@Autowired , @Resource,可以通過byTYPE(@Autowired)、byNAME(@Resource)的方式獲取Bean;

2、一類是註冊Bean,@Component , @Repository , @ Controller , @Service , @Configration這些註解都是把你要實例化的對象轉化成一個Bean,放在IoC容器中,等你要用的時候,它會和上面的@Autowired , @Resource配合到一起,把對象、屬性、方法完美組裝。

三、@Bean是啥?

1、原理是什麽?先看下源碼中的部分內容:

 1 Indicates that a method produces a bean to be managed by the Spring container.
 2  
 3  <h3>Overview</h3>
 4
5 <p>The names and semantics of the attributes to this annotation are intentionally 6 similar to those of the {@code <bean/>} element in the Spring XML schema. For 7 example: 8 9 <pre class="code"> 10 @Bean 11 public MyBean myBean() { 12 // instantiate and configure MyBean obj
13 return obj; 14 }</pre>

意思是@Bean明確地指示了一種方法,什麽方法呢——產生一個bean的方法,並且交給Spring容器管理;從這我們就明白了為啥@Bean是放在方法的註釋上了,因為它很明確地告訴被註釋的方法,你給我產生一個Bean,然後交給Spring容器,剩下的你就別管了

2、記住,@Bean就放在方法上,就是產生一個Bean,那你是不是又糊塗了,因為已經在你定義的類上加了@Configration等註冊Bean的註解了,為啥還要用@Bean呢?這個我也不知道,下面我給個例子,一起探討一下吧:

 1 package com.edu.fruit;
 2   //定義一個接口
 3     public interface Fruit<T>{
 4         //沒有方法
 5 }
 6  
 7 /*
 8 *定義兩個子類
 9 */
10 package com.edu.fruit;
11      @Configuration
12      public class Apple implements Fruit<Integer>{//將Apple類約束為Integer類型
13  
14 }
15  
16 package com.edu.fruit;
17      @Configuration
18      public class GinSeng implements Fruit<String>{//將GinSeng 類約束為String類型
19  
20 }
21 /*
22 *業務邏輯類
23 */
24 package com.edu.service;
25        @Configuration
26        public class FruitService {
27           @Autowired
28           private Apple apple;
29           @Autowired
30           private GinSeng ginseng;
31     //定義一個產生Bean的方法
32        @Bean(name="getApple")
33        public Fruit<?> getApple(){
34        System.out.println(apple.getClass().getName().hashCode);
35          System.out.println(ginseng.getClass().getName().hashCode);
36        return new Apple();
37 }
38 }
39 /*
40 *測試類
41 */
42 @RunWith(BlockJUnit4ClassRunner.class)
43 public class Config {
44     public Config(){
45         super("classpath:spring-fruit.xml");
46     }
47     @Test
48     public void test(){
49         super.getBean("getApple");//這個Bean從哪來,從上面的@Bean下面的方法中來,返回
50                                                           的是一個Apple類實例對象
51          
52     }
53 }

總結:

1、凡是子類及帶屬性、方法的類都註冊Bean到Spring中,交給它管理;

2、@Bean 用在方法上,告訴Spring容器,你可以從下面這個方法中拿到一個Bean

Spring幫助我們管理Bean分為兩個部分,一個是註冊Bean,一個裝配Bean。完成這兩個動作有三種方式,一種是使用自動配置的方式、一種是使用JavaConfig的方式,一種就是使用XML配置的方式。在自動配置的方式中,使用@Component去告訴Spring,我是一個bean,你要來管理我,然後使用@AutoWired註解去裝配Bean(所謂裝配,就是管理對象直接的協作關系)。然後在JavaConfig中,@Configuration其實就是告訴spring,spring容器要怎麽配置(怎麽去註冊bean,怎麽去處理bean之間的關系(裝配))。那麽就很好理解了,@Bean的意思就是,我要獲取這個bean的時候,你spring要按照這種方式去幫我獲取到這個bean。到了使用xml的方式,也是如此。君不見<bean>標簽就是告訴spring怎麽獲取這個bean,各種<ref>就是手動的配置bean之間的關系。

轉載自:https://www.cnblogs.com/bossen/p/5824067.html

Spring中Bean的理解以及@Bean的作用