6

Spring でオブジェクトをプールする方法に関するこのチュートリアルに従っています。チュートリアルに書かれている指示に従いましたが、アプリケーションを実行すると、常にオブジェクトの新しいインスタンスが生成されます。オブジェクトをプールしているので、既存のオブジェクトが再利用されることを期待しています。そのため、新しいインスタンスを作成する必要はありません。また、Bean の getter メソッドにアクセスすると、Bean の新しいインスタンスが再度作成されます。

私は何が間違っていたのでしょうか?Spring のプーリングの概念を誤解していましたか?

以下は私のコードです:

アプリケーション コンテキスト: (これは、アプリケーション コンテキストの本体です。)

<bean id="simpleBeanTarget" class="com.bean.SimpleBean" scope="prototype">

</bean>

<bean id="poolTargetSource" class="org.springframework.aop.target.CommonsPoolTargetSource">
    <property name="targetBeanName" value="simpleBeanTarget" />
    <property name="maxSize" value="2" />
</bean>

<bean id="simpleBean" class="org.springframework.aop.framework.ProxyFactoryBean">
    <property name="targetSource" ref="poolTargetSource" />
</bean>

コントローラー: (これは私のメソッドの本体です)

@RequestMapping("/hello")
public ModelAndView helloWorld(HttpServletRequest request, HttpServletResponse response)
{
    String message = "Hello World, Spring 3.";
    try
    {
        System.out.println("Accessing Application Context");
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

        System.out.println("Getting Bean");
        SimpleBean simpleBean = (SimpleBean) context.getBean("simpleBean");
        //A new SimpleBean... is printed here.

        System.out.println("Displaying Hello World: " + simpleBean.getRandomNum());
        //After this line, A new SimpleBean... is printed again. I simply access the getter method. Why does it create a new instance of SimpleBean?

        return new ModelAndView("hello", "message", message);
    }catch(Exception e)
    {
        System.out.println("Error: " + e);
        e.printStackTrace();
        return new ModelAndView("hello", "message", "Error! " + e.getMessage());
    }
}

私がプールしているBean:

package com.bean;

import java.util.Random;

public class SimpleBean
{
    int randomNum;
    String str;

    SimpleBean()
    {
        Random randomGenerator = new Random();
        randomNum = randomGenerator.nextInt(100);

        //I'm printing this line just to check if a instance of this bean is created.
        System.out.println("#####################A new SimpleBean was born: " + randomNum);

        str = "This is a string.";
    }

    public int getRandomNum()
    {
        return randomNum;
    }

    public void setRandomNum(int randomNum)
    {
        this.randomNum = randomNum;
    }

    public String getStr()
    {
        if (str == null)
            return "str is null";
        return str;
    }

    public void setStr(String str)
    {
        this.str = str;
    }
}

私のweb.xmlの本体:

<display-name>Spring3MVC</display-name>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>
        org.springframework.web.servlet.DispatcherServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>*.html</url-pattern>
</servlet-mapping>
4

3 に答える 3

9

リクエストごとに、まったく新しい Spring アプリケーション コンテキストを作成し、アクションごとに新しいアプリケーション コンテキストで新しいオブジェクトを取得します。そのため、web.xml で「ContextLoaderListener」を使用して、Spring コンテキストをロードする必要があります。

web.xml の参照フラグメント

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        classpath*:spring/appContext.xml  classpath*:spring/appContext-security.xml
    </param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

コードを参照してください:

try
{
    System.out.println("Accessing Application Context");
    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
   ...

Spring コンテキストの読み込みに関する詳細については、MKyong のチュートリアルまたはSpring リファレンスを参照してください。

于 2013-03-18T09:37:57.777 に答える
0

これを試してみてください...

<property name="targetSource" ref="poolTargetSource" />

<!-- Added so that different instance of object is created -->
<property name="singleton" value="false" />

于 2013-10-30T17:59:22.020 に答える
0

あなたが言及した場合、ursコンストラクターを介して提供されるオブジェクト状態で最大2つのオブジェクトを作成したいというursプーリングのサービスプロバイダーに言っていることを意味します。

  SimpleBean()
    {
        Random randomGenerator = new Random();
        randomNum = randomGenerator.nextInt(100);

        //I'm printing this line just to check if a instance of this bean is created.
        System.out.println("#####################A new SimpleBean was born: " + randomNum);

        str = "This is a string.";

    }

so SimpleBean simpleBean = (SimpleBean) context.getBean("simpleBean"); プールされたオブジェクトです。2 つの実行パスが simpleBean からサービスを取得したい場合、そのオブジェクト インスタンスはプーリングを介して提供されます。実行パスが 2 つ以上の場合、プロトタイプ スコープを介して提供されます。

于 2013-03-18T09:45:01.970 に答える