4、深入理解Bean

TZQ_DO_Dreamer發表於2014-11-09
本節知識點:
1. Bean 的自動裝配(瞭解)
2. bean 之間的關係:繼承;依賴
3.Bean 的作用域:可以在 <bean> 元素的 scope 屬性裡設定 Bean 的作用域
4.使用外部屬性檔案
5. SpEL:Spring 3.x 引入的新特性,用的不多,瞭解。


Bean配置總結:

1. Bean 的自動裝配(瞭解):

0). Bean:

     public class Dao {
    
          private String database;
    
          public void setDatabase(String database) {
               this.database = database;
          }
          public void save(){
               System.out.println("save to " + database);
          }
    
     }

     public class Service {

          private Dao dao;
    
          public void setDao(Dao dao) {
               this.dao = dao;
          }    
          public Dao getDao() {
               return dao;
          }    
          public void add(){
               System.out.println("add...");
               dao.save();
          }
    
     }

     public class Action {

          private Service service = null;
    
          public void setService(Service service) {
               this.service = service;
          }    
          public Service getService() {
               return service;
          }    
          public void execute(){
               System.out.println("execute...");
               service.add();
          }
    
     }

1). Spring 可以自動的裝配 bean 的屬性值。例如,下面的 bean 沒有進行屬性引用的配置,其裝配可以交給 Spring 的 IOC 容器

     <bean id="dao" class="com.atguigu.spring.autowire.Dao">
          <property name="database" value="DB2"/>
     </bean>
     在實際的專案中很少使用自動裝配功能,因為和自動裝配功能所帶來的好處比起來,明確清晰的配置文件更有說服力一些

     <bean id="service" class="com.atguigu.spring.autowire.Service" />
     <bean id="action" class="com.atguigu.spring.autowire.Action" />

2). 在 <bean> 的 autowire 屬性裡指定自動裝配的模式

     ①. byType:根據型別自動裝配
     <bean id="dao" class="com.atguigu.spring.autowire.Dao">
          <property name="database" value="DB2"/>
     </bean>

     <bean id="service3" class="com.atguigu.spring.autowire.Service" autowire="byType"/>

     <bean id="action" class="com.atguigu.spring.autowire.Action" autowire="byType"/>

     注意:若 IOC 容器中有多個與目標 Bean 型別一致的 Bean,Spring 將無法判定哪個 Bean 最合適該屬性, 所以不能執行自動裝配.

     <bean id="service2" class="com.atguigu.spring.autowire.Service" autowire="byName"/>
     <bean id="service3" class="com.atguigu.spring.autowire.Service" autowire="byName"/>

     <bean id="action" class="com.atguigu.spring.autowire.Action" autowire="byType"/>

     將會丟擲:NoUniqueBeanDefinitionException異常。    

     ②. byName(根據名稱自動裝配):必須將目標 Bean 的名稱和屬性名設定的完全相同.

     <bean id="service" class="com.atguigu.spring.autowire.Service" autowire="byName"/>
     <bean id="service3" class="com.atguigu.spring.autowire.Service" autowire="byName"/>

     <bean id="action" class="com.atguigu.spring.autowire.Action" autowire="byName"/>

3). 在實際的專案中很少使用自動裝配功能,因為和自動裝配功能所帶來的好處比起來,明確清晰的配置文件更有說服力一些

-----------------------------------------------------------------------------------------------------------------------------------

2. Bean 之間的關係:繼承;依賴

1). 繼承:並不是指 物件導向的繼承,而是指 bean 的配置的繼承。

①. 可以通過 bean 的 parent 屬性繼承其他 bean 的配置,在當前 bean 中可以覆蓋繼承的 bean 的屬性

     <bean id="car" class="com.atguigu.spring.relation.Car" abstract="true">
          <property name="brand" value="DasAuto"></property>
          <property name="corp" value="ShangHai"></property>
          <property name="maxSpeed" value="200"></property>
          <property name="price" value="100000"></property>
     </bean>

     <!-- 配置一個 car 的 bean, 要求 brand, corp 和 class 和上面的 car 的配置都相同 -->
     <bean id="car2" parent="car">
          <property name="corp" value="YiQi"></property>
          <property name="maxSpeed" value="220"></property>
          <property name="price" value="110000"></property>
     </bean>

2). 若只想把父 Bean 作為模板, 可以設定 <bean> 的abstract 屬性為 true, 這樣 Spring 將不會例項化這個 Bean

     <bean id="car" class="com.atguigu.spring.relation.Car" abstract="true">

3). bean 的依賴關係:Spring 允許使用者通過 depends-on 屬性設定 Bean 前置依賴的Bean,前置依賴的 Bean 會在本 Bean 例項化之前建立好

     <bean id="action" class="com.atguigu.spring.autowire.Action" autowire="byName" depends-on="service"/>


    
-----------------------------------------------------------------------------------------------------------------------------------

3. Bean 的作用域:可以在 <bean> 元素的 scope 屬性裡設定 Bean 的作用域.

1). 預設情況下, Spring 只為每個在 IOC 容器裡宣告的 Bean 建立唯一一個例項, 整個 IOC 容器範圍內都能共享該例項:
     所有後續的 getBean() 呼叫和 Bean 引用都將返回這個唯一的 Bean 例項.該作用域被稱為 singleton, 它是所有 Bean 的預設作用域.

2). 若把 scope 的值設定為 prototype  原型,則意為每次 getBean() 方法都會返回一個新的例項。

     <bean id="car2" parent="car" scope="prototype">
          <property name="corp" value="YiQi"></property>
          <property name="maxSpeed" value="220"></property>
          <property name="price" value="110000"></property>
     </bean>

3). 注意:若 scope 為 singleton, 則 IOC 容器建立時,IOC 容器即建立 Bean 的例項;
                  若 scope 為 prototype,則在 IOC 容器建立時,不再建立 Bean 的例項,而是每次呼叫 getBean 方法時才建立 Bean 的例項

4). 內部 Bean 預設情況下也是單例的


-----------------------------------------------------------------------------------------------------------------------------------
4.  使用外部屬性檔案

1). 必要性:在配置檔案裡配置 Bean 時, 有時需要在 Bean 的配置裡混入系統部署的細節資訊(例如: 檔案路徑, 資料來源配置資訊等).
而這些部署細節實際上需要和 Bean 配置相分離

2). 具體步驟:

     ①. 編寫屬性檔案:在 classpath 下新建 db.properties,並鍵入如下鍵值對:
     user=root
     password=1230
     jdbcurl=jdbc:mysql:///test
     driverclass=com.mysql.jdbc.Driver
     minsize=10
     maxsize=20
     initsize=10

     ②. 在 bean 的配置檔案中匯入 properties 檔案

          ◆加入 context 名稱空間
    
          <beans xmlns="http://www.springframework.org/schema/beans"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xmlns:context="http://www.springframework.org/schema/context"
               xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    
    
          ◆使用 <context:property-placeholder location=""/> 匯入屬性檔案
    
          <context:property-placeholder location="classpath:db.properties"/>

     ③. 在 bean 的配置檔案中通過 ${} 來使用屬性檔案中的值:
    
          <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
               <property name="user" value="${user}"></property>
               <property name="password" value="${password}"></property>
               <property name="driverClass" value="${driverclass}"></property>
               <property name="jdbcUrl" value="${jdbcurl}"></property>
    
               <property name="minPoolSize" value="${minsize}"></property>
               <property name="maxPoolSize" value="${maxsize}"></property>
               <property name="initialPoolSize" value="${initsize}"></property>
          </bean>


-----------------------------------------------------------------------------------------------------------------------------------
5. SpEL:Spring 3.x 引入的新特性,用的不多,瞭解。

     1). Spring 表示式語言(簡稱SpEL):是一個支援執行時查詢和操作物件圖的強大的表示式語言。
          語法類似於 EL:SpEL 使用 #{…} 作為定界符,所有在大框號中的字元都將被認為是 SpEL

     2). 例子:

     <bean id="car2" parent="car" scope="prototype">
          <property name="corp" value="YiQi"></property>
          <property name="maxSpeed" value="220"></property>
          <property name="price" value="110000"></property>
     </bean>

     <bean id="dao2" class="com.atguigu.spring.autowire.Dao">
          <property name="database" value="#{car2.toString().toLowerCase()}"></property>
     </bean>

     <bean id="service2" class="com.atguigu.spring.autowire.Service">
          <property name="dao" value="#{dao2}"></property>
     </bean>

<bean id="action2" class="com.atguigu.spring.autowire.Action">
     <property name="service" value="#{service2}"></property>
</bean>



相關文章