为什么在Spring MVC应用程序中创建了两个spring bean控制器实例?

时间:2014-10-08 10:31:07

标签: spring spring-mvc jvisualvm

我有一个简单的Spring MVC应用程序,它带有一个jsp和一个控制器类,部署在一个tomcat服务器中。该设置适用于多个请求。我将控制器类命名为com.mypackage.mvcController。

现在我使用jvisualvm来查找创建此特定控制器类的实例数。它显示2。jvisualvm screenshot

  1. 为什么这个特定控制器bean的实例数是两个?
  2. 默认情况下,spring bean是singleton。当然,这里的实例不会因多个请求而异,但应该是一个。
  3. 这是我的配置: 的web.xml

    <!DOCTYPE web-app PUBLIC
     "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
     "http://java.sun.com/dtd/web-app_2_3.dtd" >
    
    <web-app>
        <display-name>Archetype Created Web Application</display-name>
        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
        </context-param>
        <listener>
            <listener-class>
                org.springframework.web.context.ContextLoaderListener
            </listener-class>
        </listener>
        <servlet>
            <servlet-name>mvc-dispatcher</servlet-name>
            <servlet-class>
                org.springframework.web.servlet.DispatcherServlet
            </servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>mvc-dispatcher</servlet-name>
            <url-pattern>/</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
            <welcome-file>/WEB-INF/pages/welcome.jsp</welcome-file>
        </welcome-file-list>
    
    </web-app>
    

    mvc-dispatcher-servlet.xml文件

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        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
            http://www.springframework.org/schema/context 
            http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
        <context:component-scan base-package="com.myPackage" />
    
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix">
                <value>/WEB-INF/pages/</value>
            </property>
            <property name="suffix">
                <value>.jsp</value>
            </property>
        </bean>
    
    </beans>
    

    和项目结构:

    enter image description here

    控制器类:

     package com.myPackage;
    
        import org.springframework.stereotype.Controller;
        import org.springframework.web.bind.annotation.RequestMapping;
    
        @Controller
        @RequestMapping("serverHit")
        public class mvcController {
    
            @RequestMapping
            public String sayHello() {
                System.out.println("spring test");
                return "result";
            }
        }
    

2 个答案:

答案 0 :(得分:6)

您正在加载上下文两次。

  1. 使用dispatcherservlet servlet定义。

  2. 使用我在评论中提到的contextloader监听器。 - &GT;你不需要这样做。

  3. 看看这个:

    Why use context loader listener?

答案 1 :(得分:4)

默认情况下,Spring bean是&#34; Spring singleton&#34;。这意味着每个上下文一个实例。 Web应用程序通常至少有两个上下文 - 根文件和Web上下文。很可能你已经为这两个实例化了控制器。 @ComponentScan是最可能的错误 - 尝试添加将从根上下文中排除任何控制器的过滤器。