かずきのBlog

C#やJavaやRubyとメモ書き

目次

Blog 利用状況

ニュース

わんくまBlogが不安定になったため、前に書いてたはてなダイアリーにメインを移動します。
かずきのBlog@Hatena
技術的なネタは、こちらにも、はてなへのリンクという形で掲載しますが、雑多ネタははてなダイアリーだけに掲載することが多いと思います。
コメント
プログラマ的自己紹介
お気に入りのツール/IDE
プロフィール
経歴
広告
アクセサリ

書庫

日記カテゴリ

[Java]Spring Framework2.5入門 「beanのスコープ」

今回はbeanのスコープについてのお話です。
beanのスコープというのは、Springが、どの範囲でbeanのインスタンスを生成・破棄するかを指定するものになります。
Spring Framework2.5では、以下の5つのスコープがあります。

  1. singleton
    1つのコンテナ内で1つのインスタンス(デフォルトはこれになる)
  2. prototype
    コンテナからbeanを取得するたびにインスタンスを生成する
  3. request
    Webアプリ専用。HTTPのRequest単位でインスタンスを生成する。
  4. session
    Webアプリ専用。HTTPのSession単位でインスタンスを生成する。
  5. global session
    ポートレット専用。詳しくないのでよくわからない。グローバルセッションというものがあるらしい。

3以降は、Web系でしか使えないので、コンソールアプリとかで少し試すぶんにはsingletonとprototypeの2つになります。
今回は、この2つの動きについて見ていこうと思います。残りの部分については、勧めていく過程で使えるようになったら使っていきます。

Springがインスタンスを生成したことがわかるように、コンストラクタにログを吐くように作ったクラスを1つ定義します。

springscope/MyBean.java

package springscope;

public class MyBean {
    public MyBean() {
        System.out.println("MyBean コンストラクタ");
    }
    public void execute() {
        System.out.println("MyBean#execute()実行");
    }
}

これをSpringに登録して、singletonとprototypeで出力されるメッセージの違いを観察します。
スコープの指定は、Springの定義ファイルで、beanタグにscope属性として指定します。

application.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-2.5.xsd">
    <!-- プロトタイプ -->
    <bean id="prototypeBean" class="springscope.MyBean" scope="prototype" />

    <!-- シングルトン(scope属性を省略しても同じ) -->
    <bean id="singletonBean" class="springscope.MyBean" scope="singleton" />
</beans>

この定義ファイルを読み込んでごにょごにょやるプログラムを書きます。

package springscope;

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

public class Main {

    public static void main(String[] args) {
        System.out.println("ApplicationContextを作成");

        System.out.println("======================================");
        ApplicationContext ctx = new ClassPathXmlApplicationContext("application.xml");
        System.out.println("プロトタイプのBeanを2つ取得");
        MyBean prototype1 = (MyBean) ctx.getBean("prototypeBean");
        MyBean prototype2 = (MyBean) ctx.getBean("prototypeBean");
        System.out.println("処理を実行");
        prototype1.execute();
        prototype2.execute();

        System.out.println("======================================");
        System.out.println("シングルトンのBeanを2つ取得");
        MyBean singleton1 = (MyBean) ctx.getBean("singletonBean");
        MyBean singleton2 = (MyBean) ctx.getBean("singletonBean");
        System.out.println("処理を実行");
        singleton1.execute();
        singleton2.execute();
    }

}

これを実行して、動きを確認します。
予想としては、プロトタイプのほうはインスタンスを取得するタイミングで2回コンストラクタを実行するログが出るはずです。シングルトンのほうは、1回何処かででるはず。

ということで実行!

ApplicationContextを作成
======================================
MyBean コンストラクタ
プロトタイプのBeanを2つ取得
MyBean コンストラクタ
MyBean コンストラクタ
処理を実行
MyBean#execute()実行
MyBean#execute()実行
======================================
シングルトンのBeanを2つ取得
処理を実行
MyBean#execute()実行
MyBean#execute()実行

ApplicationContextのインスタンス作成直後のタイミング(3行目)でMyBeanのインスタンスが1つ作られていることが確認できます。
これが、シングルトンのMyBeanのインスタンスが作成されるタイミングです。

その後プロトタイプが2つ作られているのがわかります。最後のシングルトンのインスタンスを取得している所ではインスタンスが作られていないことも確認できます。

ということでまとめ。

  1. scopeは、Springのコンテナがbeanのインスタンスをどの単位で管理するかを指定するもの
  2. scopeは、5つある。
  3. webアプリ以外ではprototypeとsingletonの2つが使える。
  4. singletonはコンテナが作成されたタイミングでインスタンスが作成されて、それが使いまわされる。
  5. prototypeは、beanが取得されるたびにインスタンスが作られる。

以上です。

投稿日時 : 2009年2月17日 12:56

Feedback

# rMtFNyMLedhwlJ 2011/12/16 2:32 http://www.healthinter.org/health/page/elavil.php

Good! Wish everybody wrote so:D

# burberry scarf 2012/10/26 3:05 http://www.burberryoutletscarfsale.com/accessories

Thankyou for helping out, superb information.
burberry scarf http://www.burberryoutletscarfsale.com/accessories/burberry-scarf.html

# scarf 2012/10/27 22:17 http://www.burberryoutletonlineshopping.com/burber

I regard something genuinely special in this web site.
scarf http://www.burberryoutletonlineshopping.com/burberry-scarf.html

# mens shirts 2012/10/28 14:46 http://www.burberryoutletscarfsale.com/burberry-me

I've learn a few just right stuff here. Certainly worth bookmarking for revisiting. I wonder how much attempt you set to make this kind of excellent informative website.
mens shirts http://www.burberryoutletscarfsale.com/burberry-men-shirts.html

# burberry bag 2012/10/28 14:46 http://www.burberryoutletscarfsale.com/burberry-ba

A person necessarily lend a hand to make critically posts I would state. That is the very first time I frequented your web page and so far? I amazed with the research you made to make this actual submit incredible. Excellent job!
burberry bag http://www.burberryoutletscarfsale.com/burberry-bags.html

# t shirts 2012/10/28 14:46 http://www.burberryoutletscarfsale.com/burberry-wo

you're truly a just right webmaster. The site loading velocity is incredible. It kind of feels that you're doing any distinctive trick. Moreover, The contents are masterwork. you have done a great activity on this topic!
t shirts http://www.burberryoutletscarfsale.com/burberry-womens-shirts.html

# Canada Goose Outlet 2012/10/30 20:09 http://www.supercoatsale.com

you are in reality a excellent webmaster. The website loading velocity is incredible. It kind of feels that you are doing any distinctive trick. Also, The contents are masterwork. you've performed a wonderful task in this matter!
Canada Goose Outlet http://www.supercoatsale.com

# Women's Duvetica Coats 2012/10/30 20:10 http://www.supercoatsale.com/canada-goose-duvetica

Rattling great info can be found on web blog . "You have to learn that if you start making sure you feel good, everything will be okay." by Ruben Studdard.
Women's Duvetica Coats http://www.supercoatsale.com/canada-goose-duvetica-womens-duvetica-coats-c-13_16.html

# Women's Canada Goose Jackets 2012/10/30 20:11 http://www.supercoatsale.com/womens-canada-goose-j

A person necessarily assist to make significantly posts I might state. That is the first time I frequented your web page and thus far? I surprised with the research you made to create this actual publish incredible. Wonderful activity!
Women's Canada Goose Jackets http://www.supercoatsale.com/womens-canada-goose-jackets-c-12.html

# Nike Schehe 2012/10/30 21:10 http://www.nikefree3runschuhe.com/

Love may single happy as well as good enough solution most typically associated with real person life.
Nike Schehe http://www.nikefree3runschuhe.com/

# clarisonic mia 2012/10/30 21:11 http://www.clarisonicmia-coupon.com/

I really like happened by reason of about what you do, but by reason of what people I am certain lake i am on hand.
clarisonic mia http://www.clarisonicmia-coupon.com/

# t shirt scarf 2012/10/31 19:44 http://www.burberrysalehandbags.com/burberry-scarf

I enjoy the efforts you have put in this, thanks for all the great articles.
t shirt scarf http://www.burberrysalehandbags.com/burberry-scarf.html

# burberry bags 2012/10/31 19:45 http://www.burberrysalehandbags.com/burberry-tote-

As soon as I discovered this site I went on reddit to share some of the love with them.
burberry bags http://www.burberrysalehandbags.com/burberry-tote-bags.html

# mens shirts 2012/10/31 19:46 http://www.burberrysalehandbags.com/burberry-men-s

I went over this site and I believe you have a lot of great info, saved to bookmarks (:.
mens shirts http://www.burberrysalehandbags.com/burberry-men-shirts.html

# burberry wallets 2012/10/31 19:46 http://www.burberrysalehandbags.com/burberry-walle

I truly enjoy looking at on this web site , it has excellent posts . "Violence commands both literature and life, and violence is always crude and distorted." by Ellen Glasgow.
burberry wallets http://www.burberrysalehandbags.com/burberry-wallets-2012.html

# burberry watches on sale 2012/11/02 23:02 http://www.burberrysalehandbags.com/burberry-watch

Simply a smiling visitant here to share the love (:, btw outstanding style and design .
burberry watches on sale http://www.burberrysalehandbags.com/burberry-watches.html

# t shirts 2012/11/02 23:02 http://www.burberrysalehandbags.com/burberry-women

I really enjoy looking through on this website, it holds fantastic blog posts. "Never fight an inanimate object." by P. J. O'Rourke.
t shirts http://www.burberrysalehandbags.com/burberry-womens-shirts.html

# burberry watches on sale 2012/11/03 1:35 http://www.burberryoutletscarfsale.com/accessories

Somebody necessarily lend a hand to make significantly posts I might state. This is the first time I frequented your web page and to this point? I amazed with the analysis you made to make this actual submit amazing. Excellent process!
burberry watches on sale http://www.burberryoutletscarfsale.com/accessories/burberry-watches.html

# Burberry Ties 2012/11/03 1:35 http://www.burberryoutletscarfsale.com/accessories

You have brought up a very good points , appreciate it for the post.
Burberry Ties http://www.burberryoutletscarfsale.com/accessories/burberry-ties.html

# wipjxtpttpwl 2013/04/08 19:31 is this a themeforest theme? btmroubxhz <a hre

gjmjfikelidi

# nFYDfghbRh 2015/01/10 21:47 varlog

TbjWsm http://www.FyLitCl7Pf7kjQdDUOLQOuaxTXbj5iNG.com

# apJTNpzUlPtClHOXZ 2015/01/27 15:29 Rocky

In a meeting http://www.beachinthecity.com/index.php/programm buy limovan online TOKYO, Aug 14 (Reuters) - The dollar held a stronger toneinto Asian trade on Wednesday after U.S. retail sales reinforcedexpectations the U.S. Federal Reserve could soon start paringits monetary stimulus, with the weaker yen helping Japanesestocks rise to one-week highs.

# cRASqAsBaBLIbRvH 2015/02/05 13:12 Renato

History http://www.retendo.com.pl/sklep/ domperidone online canada In 2008, an EU target was introduced to get 10 percent oftransport fuel from renewable sources by 2020, most of whichwould come from so-called first generation biofuels made fromsugar, cereals and oilseeds.

# BIypviuOPppzdmlKx 2015/02/09 23:49 Claudio

I quite like cooking http://www.wildfirerhc.org/about/ loans with direct deposit Australian lenders are cautious about overseas acquisitionsafter deals in Britain and the United States did not generatethe returns they expected, making it difficult for them toapproach shareholders to pursue new offshore deals.

# IJZrLnaRyUkDMt 2015/02/09 23:49 Bailey

Good crew it's cool :) http://whistlingduck.net/blog/ cash advance twinsburg SNAP is a new tether, storage and deployment accessory for personal audio earbud use with smartphones, music and other portable audio and video game devices. SNAP has the exclusive ability to securely anchor earbud-wired devices to the device user. Half of all smartphones sold are lost, stolen or damaged. (Kelton Research, June 2012)

# DmhzgqksvS 2015/02/09 23:49 Jarvis

A financial advisor http://www.mac-center.com/iphone/ best loans without credit checks "I went down and just let [Joey] fight it and hold it until it got to 16 feet out where I could reach it," Maffo said. "I stood at the edge of the water and reached out with a pole and put it around its neck and pulled it up to shore and then he pulled the rope tight. I got on the gator and he came over and taped it."

# ibsOLCukuiAzw 2015/02/10 6:41 Alonzo

good material thanks http://www.ryan-browne.co.uk/about/ Order Tadalis (Phys.org) �Planetary Science Institute researchers have discovered a way to predict the changes in the rotational states of comets that could help scientists learn more about the approaching Comet C/2012 ...

# JTelefrvqISmqTQoix 2015/02/10 6:42 Demarcus

I'll put him on http://digitallocksmithsinc.com/get-informed/ what is allopurinol Clearly PJ Hairston doesn&#8217;t take that responsibility seriously enough, and its time for Roy Williams to cut ties with his star player. That will be a tremendous blow to a program that already has been through some lean years (by Tar Heel standards) and wasn&#8217;t expected to be a national title contender this season.

# rWXcDlROfGADHqMnqCJ 2015/02/11 8:04 Brooke

Do you know the address? http://www.wildfirerhc.org/about/ onlineloans com At midnight on Monday, Microsoft started selling its Surface 2 and Surface Pro 2 tablets. Still feeling its way in the computer hardware business, the company is banking on the lighter and faster models boosting the lackluster sales of its touch-screen devices.

# HNAJIStTJS 2015/02/11 8:04 Dudley

I'll put her on http://www.wildfirerhc.org/about/ ag financing "In reality, the BlackBerry 10 was not well-received by themarket, and the company was forced to ... lay off approximately4,500 employees, totaling approximately 40 percent of its totalworkforce," the complaint alleges.

# JfeisxrntuzUVLPHJZm 2015/02/11 8:04 Nicky

Will I have to work shifts? http://esuf.org/news/ motor loan The killing of a senior Free Syrian Army commander by jihadis highlights an escalating struggle within the armed uprising between moderates and Islamists linked to al-Qaeda, says the BBC&#039;s Paul Woods.

# hxzdChVnFa 2015/02/11 8:04 Scottie

I'm a trainee http://thisisaway.org/projects/ apply for loans with no credit SHANGHAI, July 10 (Reuters) - China's imports of crude andiron ore hit multi-month lows in June as the world'ssecond-largest economy lost momentum, trade data showed onWednesday, raising the prospect of weaker demand for commoditiesin the second half.

# WCZGxyDxrCzTgOc 2015/02/24 5:25 Chong

I went to http://www.horsdoeuvres.fr/contact/ purchase glucophage online Tele Columbus is up for sale and recently attracted interestfrom private equity groups CVC and Cinven,which are offering to buy it in a potential deal valuing thecompany's equity and debt at roughly 600 million euros, twopeople familiar with the negotiations said.

# qRxFwrGnJPfnCQvSv 2015/02/24 5:25 Joesph

Incorrect PIN http://www.streamsweden.com/nyheter/ inderalici de 10 mg para que sirve CHARLOTTE � The anxiety level in the Giants locker room last week was off the charts for mid-September. That�s what happens when you�re 0-2 and the pressure point in the season unceremoniously arrives before the calendar even flips to October.

# gRKpxyOjgejpzUb 2015/02/24 5:25 Elias

I enjoy travelling http://www.streamsweden.com/foretaget/ 40 mg propranolol for anxiety This phone will also come with a new fingerprint sensor known as &ldquo;Touch ID.&rdquo; Users will be able to teach the iPhone to recognize a fingerprint and authenticate their App Store purchases through a fingerprint.

# qhDHJdsCTFe 2015/02/24 5:25 Gabriella

I've got a part-time job http://martinimandate.com/tag/boston-marathon/ buy gabapentin overnight delivery Mr Mugabe, 89, won 61 per cent of the votes cast in the presidential election, in results announced on Saturday night, giving him what appeared to be a renewed commanding position over the country he has controlled since 1980.

# jyrDDbQlqHpkc 2015/02/26 11:56 Sammie

Where do you study? http://www.web-media.co.uk/consultancy/ Is There A Generic For Aciphex Eaglemoss has not officially announced how many issues will be included in the collection, however the first 30 have been confirmed and include a number of Federation vessels, from all series in the franchise, as well as a Borg Sphere and several of the more common Romulan and Klingon ships. Those hoping for a Borg Cube will have to subscribe to the publication, which is at this time rumoured to be running to a total of 70 issues (R.R.P. £9.99), which could set the most avid collector back almost £700.

# EoLxvftHoFcMLJoA 2015/02/26 11:56 Marcos

Punk not dead http://www.nude-webdesign.com/managed-hosting/ abilify prices canada Kucherena confirmed Snowden was staying somewhere in the many corridors and rooms of the transit area between the runway and passport control - an area Russia considers neutral territory - and that he had learned the Russian for "Hi", "Bye-bye" and "I'll ring you."

# gMiGsVnGEqoVPFAuiYG 2015/02/27 18:55 Duane

Can I use your phone? http://www.holysoakers.com/agence/ purchase ivermectin online Bynes, who is on probation in California for driving on a suspended license, is on trial in the state on a charge of driving under the influence and in New York on charges of marijuana possession and throwing a bong out of a window.

# AauBJKscdNJsjPG 2015/02/27 22:10 Trinidad

I didn't go to university http://www.bethelhebrew.org/about-us Doxazosin Mesylate 4mg However, in a step that may make it harder for Abbas to resume talks, Israel granted initial approval on Wednesday to build 732 new homes in Modiin Ilit, a West Bank settlement midway between Jerusalem and Tel Aviv.

# eCzkRJohQIQz 2015/02/27 22:10 Blaine

I'd like a phonecard, please https://rarcc.org/contact-us bimatoprost cost Click-and-collect, where customers collect online orders from stores rather than have them delivered to their homes, already accounts for a third of Argos sales and has the potential to drive shoppers back to the high street, even as online sales rise.

# XbyULbnZakmCIeLwpGV 2015/04/07 14:27 Gayle

Yes, I love it! http://www.europanova.eu/contact/ bimatoprost online without prescription Newly flush Wall Street investors moved into the mid-market with so much money that they bought nearly every foreclosure in sight, mostly to rent. The Blackstone Group, for example, spent $5.5 billion on 32,000 homes across America, according to the firm. American Homes 4 Rent, the California-based real estate investment trust founded by self-storage billionaire Wayne Hughes, spent $3.3 billion, on more than 19,000 houses.

# I just could not leave your web site prior to suggesting that I actually loved the usual information a person provide in your guests? Is going to be back frequently in order to investigate cross-check new posts 2018/09/04 17:56 I just could not leave your web site prior to sugg

I just could not leave your web site prior to suggesting that I
actually loved the usual information a person provide
in your guests? Is going to be back frequently in order to investigate cross-check new posts

# Hi, just wanted to mention, I enjoyed this article. It was inspiring. Keep on posting! 2018/10/02 2:59 Hi, just wanted to mention, I enjoyed this article

Hi, just wanted to mention, I enjoyed this article.
It was inspiring. Keep on posting!

# This is my first time visit at here and i am truly happy to read everthing at one place. 2018/11/03 0:50 This is my first time visit at here and i am truly

This is my first time visit at here and i am truly happy to
read everthing at one place.

# Hi, I desire to subscribe for this blog to obtain newest updates, thus where can i do it please help. 2018/11/07 5:36 Hi, I desire to subscribe for this blog to obtain

Hi, I desire to subscribe for this blog to obtain newest updates,
thus where can i do it please help.

# Hey there! Do you know if they make any plugins to safeguard against hackers? I'm kinda paranoid about losing everything I've worked hard on. Any suggestions? 2018/11/13 2:29 Hey there! Do you know if they make any plugins to

Hey there! Do you know if they make any plugins to safeguard against hackers?
I'm kinda paranoid about losing everything I've worked hard on. Any suggestions?

# donFFuXQOKxPJ 2018/12/20 11:31 https://www.suba.me/

ff2NJj magnificent points altogether, you simply gained a new reader. What might you recommend about your post that you just made a few days in the past? Any certain?

# Hi, i think that i saw you visited my blog thus i came to “return the favor”.I am attempting to find things to improve my site!I suppose its ok to use some of your ideas!! 2019/03/24 12:25 Hi, i think that i saw you visited my blog thus i

Hi, i think that i saw you visited my blog thus i came to “return the favor”.I am attempting to find things to improve my site!I suppose its ok to
use some of your ideas!!

# What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time. plenty of fish natalielise 2019/07/26 14:53 What's up friends, its enormous post on the topic

What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time.
plenty of fish natalielise

# What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time. plenty of fish natalielise 2019/07/26 14:54 What's up friends, its enormous post on the topic

What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time.
plenty of fish natalielise

# What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time. plenty of fish natalielise 2019/07/26 14:55 What's up friends, its enormous post on the topic

What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time.
plenty of fish natalielise

# What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time. plenty of fish natalielise 2019/07/26 14:56 What's up friends, its enormous post on the topic

What's up friends, its enormous post on the topic of educationand completely defined, keep it up all the time.
plenty of fish natalielise

# I do not know if it's just me or if perhaps everybody else experiencing issues with your website. It looks like some of the text on your posts are running off the screen. Can someone else please comment and let me know if this is happening to them as we 2019/09/17 10:17 I do not know if it's just me or if perhaps everyb

I do not know if it's just me or if perhaps everybody else
experiencing issues with your website. It looks like some of the text on your
posts are running off the screen. Can someone else please comment and let me know if this is happening to them as well?
This could be a issue with my browser because I've had this happen previously.
Appreciate it

# Illikebuisse mahtj 2021/07/04 21:29 pharmaceptica.com

150 mg sildenafil https://pharmaceptica.com/

# Illikebuisse jwrnq 2021/07/05 4:25 pharmaceptica

is chloroquine phosphate over the counter https://www.pharmaceptica.com/

# re: [Java]Spring Framework2.5?? ?bean?????? 2021/07/24 12:05 hcq 200

what is in chloroquine https://chloroquineorigin.com/# hydroxychloroquine drug

# re: [Java]Spring Framework2.5?? ?bean?????? 2021/08/09 4:11 hydroxychloraquine

chlorodine https://chloroquineorigin.com/# plaquenil sulfate 200 mg

# jeyvptrjqyqv 2022/05/19 17:41 brxlidzo

erythromycin ophthalmic ointment for newborns http://erythromycin1m.com/#

タイトル
名前
Url
コメント