春-Beanスコープ
<bean>を定義するとき、そのBeanのスコープを宣言するオプションがあります。たとえば、Springが必要になるたびに新しいBeanインスタンスを生成するように強制するには、Beanのスコープ属性を次のように宣言する必要があります。prototype。同様に、Springが必要になるたびに同じBeanインスタンスを返すようにする場合は、Beanのスコープ属性を次のように宣言する必要があります。singleton。
Spring Frameworkは、次の5つのスコープをサポートします。そのうちの3つは、Web対応のApplicationContextを使用する場合にのみ使用できます。
シニア番号 | 範囲と説明 |
---|---|
1 | singleton これにより、Bean定義がSpring IoCコンテナーごとに1つのインスタンスにスコープされます(デフォルト)。 |
2 | prototype これは、単一のBean定義をスコープして、任意の数のオブジェクトインスタンスを持ちます。 |
3 | request これは、Bean定義をHTTPリクエストにスコープします。Web対応のSpringApplicationContextのコンテキストでのみ有効です。 |
4 | session これは、Bean定義をHTTPセッションにスコープします。Web対応のSpringApplicationContextのコンテキストでのみ有効です。 |
5 | global-session これは、Bean定義をグローバルHTTPセッションにスコープします。Web対応のSpringApplicationContextのコンテキストでのみ有効です。 |
この章では、最初の2つのスコープについて説明し、残りの3つについては、Web対応のSpringApplicationContextについて説明します。
シングルトンスコープ
スコープがシングルトンに設定されている場合、Spring IoCコンテナーは、そのBean定義によって定義されたオブジェクトのインスタンスを1つだけ作成します。この単一インスタンスは、そのようなシングルトンBeanのキャッシュに格納され、その名前付きBeanに対する後続のすべての要求と参照は、キャッシュされたオブジェクトを返します。
デフォルトのスコープは常にシングルトンです。ただし、Beanのインスタンスが1つだけ必要な場合は、scope プロパティに singleton 次のコードスニペットに示すように、Bean構成ファイル内-
<!-- A bean definition with singleton scope -->
<bean id = "..." class = "..." scope = "singleton">
<!-- collaborators and configuration for this bean go here -->
</bean>
例
動作するEclipseIDEを配置し、次の手順を実行してSpringアプリケーションを作成しましょう-
ステップ | 説明 |
---|---|
1 | SpringExampleという名前のプロジェクトを作成し、の下にパッケージcom.tutorialspointを作成します。src 作成したプロジェクトのフォルダ。 |
2 | Spring Hello Worldの例の章で説明されているように、[外部JARの追加]オプションを使用して必要なSpringライブラリを追加します。 |
3 | com.tutorialspointパッケージの下にJavaクラスHelloWorldとMainAppを作成します。 |
4 | Beans構成ファイルBeans.xmlをsrc フォルダ。 |
5 | 最後のステップは、すべてのJavaファイルとBean構成ファイルのコンテンツを作成し、以下で説明するようにアプリケーションを実行することです。 |
これがの内容です HelloWorld.java ファイル-
package com.tutorialspoint;
public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message : " + message);
}
}
以下は、の内容です 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.setMessage("I'm object A");
objA.getMessage();
HelloWorld objB = (HelloWorld) context.getBean("helloWorld");
objB.getMessage();
}
}
以下は設定ファイルです Beans.xml シングルトンスコープに必要-
<?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" scope = "singleton">
</bean>
</beans>
ソースとBeanの構成ファイルの作成が完了したら、アプリケーションを実行しましょう。アプリケーションに問題がない場合は、次のメッセージが出力されます-
Your Message : I'm object A
Your Message : I'm object A
プロトタイプスコープ
スコープがプロトタイプに設定されている場合、Spring IoCコンテナーは、その特定のBeanの要求が行われるたびに、オブジェクトの新しいBeanインスタンスを作成します。原則として、すべてのステートフルBeanにはプロトタイプスコープを使用し、ステートレスBeanにはシングルトンスコープを使用します。
プロトタイプスコープを定義するには、 scope プロパティに prototype 次のコードスニペットに示すように、Bean構成ファイル内-
<!-- A bean definition with prototype scope -->
<bean id = "..." class = "..." scope = "prototype">
<!-- collaborators and configuration for this bean go here -->
</bean>
例
Eclipse IDEを配置し、次の手順に従ってSpringアプリケーションを作成しましょう-
ステップ | 説明 |
---|---|
1 | SpringExampleという名前のプロジェクトを作成し、の下にパッケージcom.tutorialspointを作成します。src 作成したプロジェクトのフォルダ。 |
2 | Spring Hello Worldの例の章で説明されているように、[外部JARの追加]オプションを使用して必要なSpringライブラリを追加します。 |
3 | com.tutorialspointパッケージの下にJavaクラスHelloWorldとMainAppを作成します。 |
4 | Beans構成ファイルBeans.xmlをsrc フォルダ。 |
5 | 最後のステップは、すべてのJavaファイルとBean構成ファイルのコンテンツを作成し、以下で説明するようにアプリケーションを実行することです。 |
これがの内容です HelloWorld.java ファイル
package com.tutorialspoint;
public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message : " + message);
}
}
以下は、の内容です 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.setMessage("I'm object A");
objA.getMessage();
HelloWorld objB = (HelloWorld) context.getBean("helloWorld");
objB.getMessage();
}
}
以下は設定ファイルです Beans.xml プロトタイプスコープに必要-
<?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" scope = "prototype">
</bean>
</beans>
ソースとBeanの構成ファイルの作成が完了したら、アプリケーションを実行しましょう。アプリケーションに問題がない場合は、次のメッセージが出力されます-
Your Message : I'm object A
Your Message : null