位置:首頁 > Java技術 > Spring > Spring bean定義繼承

Spring bean定義繼承

bean定義可以包含很多的配置信息,包括構造函數的參數,屬性值,比如初始化方法,靜態工廠方法名等容器的具體信息。

子bean定義從父定義繼承配置數據。子的定義可以覆蓋一些值,或者根據需要添加其他。

Spring bean定義繼承無關,與Java類的繼承,但繼承的概念是一樣的。你可以定義一個父bean定義為模板和其他孩子bean可以從父bean繼承所需的配置。

當使用基於XML的配置元數據,指明一個子bean定義使用所在的當前屬性指定的父bean作為這個屬性的值。

例如:

讓我們使用Eclipse IDE,然後按照下麵的步驟來創建一個Spring應用程序:

步驟 描述
1 Create a project with a name SpringExample and create a package com.yiibai under the src folder in the created project.
2 Add required Spring libraries using Add External JARs option as explained in the Spring Hello World Example chapter.
3 Create Java classes HelloWorldHelloIndia and MainApp under the com.yiibaipackage.
4 Create Beans configuration file Beans.xml under the src folder.
5 The final step is to create the content of all the Java files and Bean Configuration file and run the application as explained below.

以下是我們定義的“HelloWorld”豆裡麵有兩個屬性message1和message2配置文件beans.xml中。下一步“helloIndia”豆已經被定義為“HelloWorld”的子bean使用parent屬性。該子bean繼承message2屬性原狀,並覆蓋message1 屬性,並引入多一個屬性message3。

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id="helloWorld" class="com.yiibai.HelloWorld">
       <property name="message1" value="Hello World!"/>
       <property name="message2" value="Hello Second World!"/>
   </bean>

   <bean id="helloIndia" class="com.yiibai.HelloIndia"
       parent="helloWorld">
       <property name="message1" value="Hello India!"/>
       <property name="message3" value="Namaste India!"/>
   </bean>

</beans>

這裡是HelloWorld.java 文件的內容:

package com.yiibai;

public class HelloWorld {
   private String message1;
   private String message2;

   public void setMessage1(String message){
      this.message1  = message;
   }

   public void setMessage2(String message){
      this.message2  = message;
   }

   public void getMessage1(){
      System.out.println("World Message1 : " + message1);
   }

   public void getMessage2(){
      System.out.println("World Message2 : " + message2);
   }
}

這裡是HelloIndia.java文件的內容:

package com.yiibai;

public class HelloIndia {
   private String message1;
   private String message2;
   private String message3;

   public void setMessage1(String message){
      this.message1  = message;
   }

   public void setMessage2(String message){
      this.message2  = message;
   }

   public void setMessage3(String message){
      this.message3  = message;
   }

   public void getMessage1(){
      System.out.println("India Message1 : " + message1);
   }

   public void getMessage2(){
      System.out.println("India Message2 : " + message2);
   }

   public void getMessage3(){
      System.out.println("India Message3 : " + message3);
   }
}

以下是MainApp.java文件的內容:

package com.yiibai;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = 
             new ClassPathXmlApplicationContext("Beans.xml");

      HelloWorld objA = (HelloWorld) context.getBean("helloWorld");

      objA.getMessage1();
      objA.getMessage2();

      HelloIndia objB = (HelloIndia) context.getBean("helloIndia");
      objB.getMessage1();
      objB.getMessage2();
      objB.getMessage3();
   }
}

創建完成源代碼和bean配置文件,讓我們運行應用程序。如果一切順利,這將打印以下信息:

World Message1 : Hello World!
World Message2 : Hello Second World!
India Message1 : Hello India!
India Message2 : Hello Second World!
India Message3 : Namaste India!

如果你在這裡看到,我們冇有通過message2同時創建“helloIndia”的bean,但它通過了,因為bean定義的繼承。 

bean定義模板:

您可以創建可以在不會花太多功夫被其他子bean定義的bean定義模板。在定義bean定義模板,不應指定類屬性,並應與真值指定如下所示的抽象屬性:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id="beanTeamplate" abstract="true">
       <property name="message1" value="Hello World!"/>
       <property name="message2" value="Hello Second World!"/>
       <property name="message3" value="Namaste India!"/>
   </bean>

   <bean id="helloIndia" class="com.yiibai.HelloIndia"
       parent="beanTeamplate">
       <property name="message1" value="Hello India!"/>
       <property name="message3" value="Namaste India!"/>
   </bean>

</beans>

父bean不能被實例化它自己,因為它是不完整的,而且它也明確地標記為抽象。當一個定義是抽象的這個樣子,它隻是作為一個純粹的模板bean定義,充當子定義的父定義使用。