4

Tomcat 7 をサーブレット マネージャーとして使用し、バージョン 3.1.2 を使用して春のアプリケーションを開発しています。Bean が 2 回作成されていることに気付きましたが、それを防ぐ方法がわかりません。問題が 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-reporter-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 はまったく定義されません。コンテキスト ステートメントを (必要なインポートと共に) web.xml に移動すると、2 回定義されます。どういうわけか、起動時に web.xml が 2 回呼び出されていると思われます。

webapps ディレクトリを確認したところ、1 つのファイルとディレクトリ、アプリケーションのデプロイに使用された .war ファイル、および展開されたディレクトリしかありませんでした。

私が開発した他の .war アプリケーションにもこの動作がありますが、それらには同様の xml ファイルが関連付けられています。

なぜこれが起こっているのか誰にも分かりますか?私はここで困惑しています。

前もってありがとう、マックス

4

2 に答える 2

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 が2回宣言されているようです。

于 2013-05-24T15:17:08.440 に答える