22

applicationContext.xmlとdispatcher-servlet.xml構成のSpringWebアプリがあります。applicationContext.xmlで定義しました<context:component-scan />が、アプリを実行する<context:component-scan />と、dispatcher-servlet.xmlにも追加しない限り、コントローラーが見つかりません。私は両方で同じ基本パッケージを使用しているので、それは問題ではありません。

applicationContext.xmlはdispatcher-servlet.xmlの親だと思ったので、混乱しています。<context:component-scan />applicationContext.xmlを入れるだけで十分ではないでしょうか?

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">


<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

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

<servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

編集:私はまた、コントローラーをピックアップすることになっているディスパッチャー-servlet.xmlでmvc:annotation-drivenを使用しています(私は思った?)。

編集2:これが設定ファイルです。たくさんのSpringSecurityとOAuthの設定をapplicationContext.xmlから削除しました(セキュリティ上の理由から、おそらくそれらは関連性がないためです)。

applicationContext.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:sec="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c"
xmlns:context="http://www.springframework.org/schema/context" xmlns:oauth="http://www.springframework.org/schema/security/oauth2"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
      http://www.springframework.org/schema/security/oauth2 http://www.springframework.org/schema/security/spring-security-oauth2.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<context:component-scan base-package="bar.foo"/>
<context:property-placeholder location="classpath:my.properties" />
<bean class="bar.foo.ServicesConfig" />

</beans>

ディスパッチャー-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c"
xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<context:component-scan base-package="bar.foo.controller" />
<mvc:annotation-driven/>
<mvc:default-servlet-handler />

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
    <property name="order" value="2" />
</bean>

<bean id="contentViewResolver" class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
    <property name="mediaTypes">
        <map>
            <entry key="json" value="application/json" />
        </map>
    </property>
    <property name="defaultViews">
        <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
    </property>
    <property name="order" value="1" />
</bean>

</beans>

編集3:さて、これは興味深いです。私のサービスとdaoクラスは、Webプロジェクトから参照する別のプロジェクト(JAR)にあります。私はJavaベースの構成を使用しており、applicationContext.xmlから参照しています。

<bean class="bar.foo.config.ServicesConfig" />

つまり、これは、私のWebプロジェクト(applicationContext.xmlが配置されている場所)にはControllerアノテーションのみがあることを意味します。振り返ってみると、@ Controller以外にはアノテーションがないため、applicationContext.xmlからcontext:component-scanを削除しても影響はありません(編集するための修正:@Autowiredアノテーションがいくつかあります)。しかし、applicationContext.xmlからcontext:component-scanを削除すると、コントローラー(ディスパッチャーサーブレットスキャンから検出された)がサービスクラスを見つけることができないと表示されます。ServicesConfigへの参照で十分ではありませんか?参照用のServicesConfigクラスは次のとおりです。Servicesの独自のコンポーネントスキャンがあります。これは、applicationContext.xmlがスキャンしていたものとは異なるパッケージです。

@Configuration
@ComponentScan({ "some.other.package", "another.package" })
@ImportResource({ "classpath:commonBeans.xml" })
@PropertySource({ "classpath:services.properties",
"classpath:misc.properties" })
public class ServicesConfig {
  // Bean definitions //
}

解決:

ルートコンテキストからcontext:component-scanを削除したとき、コントローラーは自動配線されたサービスBeanを取得していませんでした。これは、ルートコンテキストがサービスのJavaベースの構成Beanを参照しているためですが、コンポーネントをスキャンするためのルートコンテキストの設定がありませんでした。したがって、コンポーネントスキャンをルートコンテキスト(applicationContext.xml)に追加すると、すべてが機能します。これが私が今持っているものです:

applicationContext.xml:

<bean class="bar.foo.config.ServicesConfig" />
<context:component-scan base-package="bar.foo.config" />

dispatcher-servlet.xml:

<context:component-scan base-package="bar.foo.controller" />

コントローラー、自動配線、およびコントローラーパッケージ内の他の注釈をピックアップするようにWebコンテキストを設定しています。これがベストプラクティスかどうかはわかりません。

4

3 に答える 3

35

その通りです。2つの異なるアプリケーションコンテキストがあります。ContextLoaderListenerによってロードされるルートアプリケーションコンテキスト(ServletContextが初期化される時点)とWebコンテキスト(DispatcherServletによってロードされる)です。ルートアプリケーションコンテキストはWebの親です。コンテクスト。

これらは2つの異なるアプリケーションコンテキストであるため、動作が異なりますcomponent-scan。アプリケーションコンテキストでサービスを定義すると、サービスのすべてのBeanがここで作成されます。

Dispatcherサーブレットがロードされると、Webコンテキストの作成が開始され、ある時点で(<mvc:annotation-driven/>URIによってハンドラーメソッドへのマッピングが作成され、アプリケーションコンテキスト(Webアプリケーションになります)のBeanのリストが取得されます。ルートアプリケーションコンテキストではなくコンテキスト)、component-scanここでコントローラー関連のBeanが見つからず、マッピングが作成されないため、ディスパッチャーサーブレットコンテキストでコンポーネントスキャンを定義する必要があるのはそのためです。また。

ルートアプリケーションコンテキストでコントローラー関連のBeanを除外することをお勧めします。

<context:component-scan base-package="package">
    <context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>

Webアプリケーションコンテキストでコントローラーに関連するもののみ:

<context:component-scan base-package="package" use-default-filters="false">
    <context:include-filter expression="org.springframework.stereotype.Controller" type="annotation" />
</context:component-scan>
于 2012-07-13T13:34:39.110 に答える
1

私たちのアプリケーションでは、dispatcher-servlet.xmlで定義します

それがapplicationContext.xmlではなく本来あるべき場所だと思います

Springドキュメントのこのセクションでは、より多くの情報を提供する必要があります。

http://static.springsource.org/spring/docs/current/spring-framework-reference/html/mvc.html

セクション16.2の図の1つからわかるように、ディスパッチャサーブレットはコンテキスト階層のapplicationContextの上にあります。

于 2012-07-12T14:23:57.670 に答える
0

web.xml同じ問題が発生し、コードをこのチュートリアルと比較した後、コードを変更して機能しました。これが私のweb.xmlファイルです:

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:mvc="http://www.springframework.org/schema/mvc"
     xsi:schemaLocation="
    http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
     version="3.0">
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/business-config.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>
</servlet>

<servlet-mapping>
    <servlet-name>mvc-dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

context-paramそしてlistener私が逃したものでした。

お役に立てば幸いです。

于 2015-10-30T05:55:51.460 に答える