このチュートリアルを読んで、Spring MVC の勉強を始めました: http://viralpatel.net/blogs/spring-3-mvc-create-hello-world-application-spring-3-mvc/
わかりました、これは私にとって非常に明確です。
この例では、Web アプリケーションを構成するためのweb.xmlファイルがあります。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee /web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Spring3MVC</display-name>
<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>
そして、mu DispatcherServlet の構成に使用されるspring-servlet.xmlファイル:
<?xml version="1.0" encoding="UTF-8"?>
<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:context="http://www.springframework.org/schema/context"
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="net.viralpatel.spring3.controller" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
そして、前のリンクでわかるように、「/hello」URL への HTTP リクエストを処理するコントローラー クラスしかありません...わかりました...これは私には明らかです...
この例の次に、STS\Eclipse の関連するテンプレート プロジェクトによって、新しい Spring MVC プロジェクトを作成しました。
この例は、前の例と非常によく似ています。Web アプリを構成するための web.xml ファイル、DispatcherServlet を構成するためのファイル、および HTTP 要求を処理するコントローラー クラスを常に持っています。
しかし、私には理解できない違いがあります。
これは私のweb.xml構成ファイルです。
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
そして、これはservlet-context.xmlファイル (私の DispatcherServlet を構成する構成ファイル) です。
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<context:component-scan base-package="com.mycompany.maventestwebapp" />
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
ご覧のとおり、2 つの例の構成ファイルにはいくつかの違いがあります。
STS\Eclipse によって作成されたプロジェクトでは、servlet-context.xmlファイル内に、投稿した最初の例には存在しない次の構成があります。
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
わかりました...この構成タグに関する多くのドキュメントを読みました。つまり、xml で多数の要素を実際に指定したり、インターフェイスを実装したり、基本クラスを拡張したりすることなく、Spring Bean の依存関係を定義できることを意味します。Spring が起動すると、その xml 構成ファイルを読み取り、Foo が @Controller でマークアップされていることを探し、クラスがコントローラーであることを認識し、そのように扱います。デフォルトでは、Spring は、管理する必要があるすべてのクラスが beans.xml ファイルで明示的に定義されていると想定しています。次に、コンポーネントのスキャンがありますcom.mycompany.maventestweapp の下のすべてのクラスのクラスパスを検索し、各クラスを調べて @Controller、@Repository、@Service、または @Component があるかどうかを確認する必要があることを Spring に伝えるタグ。そうすると、Spring は、xml 構成ファイルに入力したかのように、Bean ファクトリにクラスを登録します。BLABLABLA ETCETCETC BLABLA
わかりました、これは私にとって絶対に明らかです!!! 2 番目の例の DispatcherServler 構成ファイル内にアノテーション駆動型タグがある理由を理解するのに問題はないと思います。これは明らかです。
問題は、最初の例の DispatcherServlet 構成ファイルにこのタグがない理由と、それがうまく機能する理由を理解することです。このタグを servlet-context.xml ファイルから削除しようとすると (2 番目の例では)、削除されません。実行してエラーになり、次のように言います: HTTPステータス404-そしてスタックトレースに:WARN:org.springframework.web.servlet.PageNotFound-名前がDispatcherServletのURI [/maventestwebapp/]のHTTPリクエストのマッピングが見つかりません ' appServlet'
Spring はアノテーションのサポートを有効にしていないため、これは合理的な動作だと思います。そのため、コントローラー クラスを登録していません (アノテーション駆動型を使用し、コントローラー クラスに @Controller でアノテーションを付けるのは、このクラスを bean.xml で明示的に定義した場合の方法です)。ファイル)、したがって、この Bean のメソッドを使用して HTTP 要求を処理することはできません...わかりました...これはいいですね...
しかし、なぜ最初の例では、アノテーション駆動型のタグがなくても機能するのでしょうか? 注釈駆動型のタグがなく (したがって、注釈を使用してコントローラーなどの Spring Bean であるクラスを宣言することはできません)、このクラスを beans.xml ファイルで明示的に宣言していません。注釈駆動型タグを削除すると、2番目の例が機能しません...しかし、機能します:-/
私はその理由を理解するのに夢中になっています...
助けてくれますか?
どうもありがとう
アンドレア