我正在使用版本3.1.2使用tomcat 7作为servlet管理器开发一个spring应用程序。我注意到bean被创建了两次,我不知道如何防止它。我知道问题出在我的web.xml或应用程序上下文中,但我一直无法找到重复的来源。
从启动时的tomcat日志中,我看到以下内容(为空格释义):
May 24, 2013 9:33:03 AM org.springframework.web.context.ContextLoader initWebApplicationContext
INFO: Root WebApplicationContext: initialization started
May 24, 2013 9:33:03 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing Root WebApplicationContext: startup date [Fri May 24 09:33:03 CDT 2013]; root of context hierarchy
May 24, 2013 9:33:03 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/kpi-reporter-servlet.xml]
May 24, 2013 9:33:03 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@df9978: defining beans [...]; root of factory hierarchy
May 24, 2013 9:33:04 AM org.springframework.web.context.ContextLoader initWebApplicationContext
INFO: Root WebApplicationContext: initialization completed in 1260 ms
May 24, 2013 9:33:04 AM org.springframework.web.servlet.FrameworkServlet initServletBean
INFO: FrameworkServlet 'kpi-reporter': initialization started
May 24, 2013 9:33:04 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing WebApplicationContext for namespace 'kpi-reporter-servlet': startup date [Fri May 24 09:33:04 CDT 2013]; parent: Root WebApplicationContext
May 24, 2013 9:33:04 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/kpi-reporter-servlet.xml]
May 24, 2013 9:33:04 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@2821db: defining beans [...]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@df9978
这是我的web.xml和应用程序上下文配置:
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>kpi-reporter</display-name>
<servlet>
<servlet-name>kpi-reporter</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>kpi-reporter</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
<url-pattern>*.gif</url-pattern>
<url-pattern>*.js</url-pattern>
<url-pattern>*.png</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/kpi-reporter-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
KPI - 报道-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="."/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"></property>
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
如果我删除了kpi-reporter-servlet.xml中的语句,那么bean根本就没有定义。如果我将context语句移动到web.xml(以及所需的导入),它仍会被定义两次。我怀疑在启动期间以某种方式调用web.xml两次。
我检查了webapps目录,我只有一个文件和目录,用于部署应用程序的.war文件,以及解压缩到的目录。
我开发的其他.war应用程序也有这种行为,尽管它们有类似的xml文件。
有谁知道为什么会这样?我在这里难过。
提前致谢, 最大
答案 0 :(得分:5)
您可以注释掉context-param部分,如下所示:
<!--context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/kpi-reporter-servlet.xml</param-value>
</context-param-->
或者,将kpi-reporter-servlet.xml重命名为其他内容,并相应地更新context-param的param-value。
Spring的医生说:
初始化DispatcherServlet后,Spring MVC会查找 文件名为[servlet-name] - servlet.xml ...
所以在你的情况下,就像kpi-reporter-servlet.xml被声明两次。
答案 1 :(得分:0)
在此处初始化两个应用程序上下文:
ContextLoaderListener使用context-param标记引用的文件中包含的bean创建应用程序上下文:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/kpi-reporter-servlet.xml</param-value>
</context-param>
这是“根”(或父)应用程序上下文。
然后,您的DispatcherServlet正在查找名为SERVLET-NAME-servlet.xml的文件,并使用文件中定义的bean构建另一个应用程序上下文。此应用程序上下文将“根”应用程序上下文作为父级。这里你的servlet的名字是“kpi-reporter”,所以它加载了“kpi-reporter-servlet.xml”中定义的所有bean。
因此,如果您不需要使用ContextLoaderListener,则将其删除。如果需要,可以更改文件名(例如:kpi-reporter-context.xml)并提供一个空的kpi-reporter-servlet.xml,它将由DispatcherServlet加载。