Spring-Bean定義の継承
Bean定義には、コンストラクター引数、プロパティ値、初期化メソッド、静的ファクトリメソッド名などのコンテナー固有の情報など、多くの構成情報を含めることができます。
子Bean定義は、親定義から構成データを継承します。子定義は、必要に応じて、一部の値をオーバーライドしたり、他の値を追加したりできます。
Spring Bean定義の継承は、Javaクラスの継承とは関係ありませんが、継承の概念は同じです。親Bean定義をテンプレートとして定義でき、他の子Beanは親Beanから必要な構成を継承できます。
XMLベースの構成メタデータを使用する場合は、を使用して子Bean定義を指定します。 parent 属性。この属性の値として親Beanを指定します。
例
動作するEclipseIDEを配置し、次の手順を実行してSpringアプリケーションを作成しましょう-
ステップ | 説明 |
---|---|
1 | SpringExampleという名前のプロジェクトを作成し、の下にパッケージcom.tutorialspointを作成します。src 作成したプロジェクトのフォルダ。 |
2 | Spring Hello Worldの例の章で説明されているように、[外部JARの追加]オプションを使用して必要なSpringライブラリを追加します。 |
3 | com.tutorialspointパッケージの下にJavaクラスHelloWorld、HelloIndia、およびMainAppを作成します。 |
4 | Beans構成ファイルBeans.xmlをsrc フォルダ。 |
5 | 最後のステップは、すべてのJavaファイルとBean構成ファイルのコンテンツを作成し、以下で説明するようにアプリケーションを実行することです。 |
以下は設定ファイルです Beans.xmlここで、message1とmessage2の2つのプロパティを持つ「helloWorld」Beanを定義しました。次の「helloIndia」Beanは、を使用して「helloWorld」Beanの子として定義されています。parent属性。子ビーン継承メッセージ2プロパティがあり、そしてオーバーライドとしてメッセージ1プロパティと紹介1つの以上のプロパティ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.tutorialspoint.HelloWorld">
<property name = "message1" value = "Hello World!"/>
<property name = "message2" value = "Hello Second World!"/>
</bean>
<bean id ="helloIndia" class = "com.tutorialspoint.HelloIndia" parent = "helloWorld">
<property name = "message1" value = "Hello India!"/>
<property name = "message3" value = "Namaste India!"/>
</bean>
</beans>
これがの内容です HelloWorld.java ファイル-
package com.tutorialspoint;
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.tutorialspoint;
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.tutorialspoint;
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!
ここで観察した場合、「helloIndia」Beanの作成中にmessage2を渡さなかったが、Bean定義の継承のために渡された。
Bean定義テンプレート
Bean定義テンプレートを作成できます。これは、他の子Bean定義で多くの労力をかけずに使用できます。Bean定義テンプレートを定義するときは、class 属性と指定する必要があります abstract 属性であり、次の値で抽象属性を指定する必要があります true 次のコードスニペットに示すように-
<?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.tutorialspoint.HelloIndia" parent = "beanTeamplate">
<property name = "message1" value = "Hello India!"/>
<property name = "message3" value = "Namaste India!"/>
</bean>
</beans>
親Beanは不完全であるため、それ自体でインスタンス化することはできません。また、抽象として明示的にマークされています。定義がこのように抽象的である場合、子定義の親定義として機能する純粋なテンプレートBean定義としてのみ使用できます。