サーチ…


前書き

Spring Web MVCでは、DispatcherServletクラスがフロントコントローラとして機能します。 Spring MVCアプリケーションのフローを管理します。

DispatcherServletは、通常のサーブレットをweb.xmlに設定する必要もあります

dispatcher-servlet.xml

これは、ViewResolverとViewコンポーネントを指定する必要がある重要な設定ファイルです。

context:component-scan要素は、DispatcherServletがコントローラクラスを検索するベースパッケージを定義します。

ここでは、InternalResourceViewResolverクラスがViewResolverに使用されています。

コントローラ+接尾辞ページによって返された接頭辞+文字列が、ビューコンポーネントに対して呼び出されます。

このxmlファイルは、WEB-INFディレクトリ内に配置する必要があります。

<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.srinu.controller.Employee" />
 
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix">
            <value>/WEB-INF/views/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>
</beans>

web.xmlのディスパッチャサーブレット設定

このXMLファイルでは、Spring Web MVCのフロントコントローラとして機能するサーブレットクラスDispatcherServletを指定しています。 HTMLファイルの着信要求はすべてDispatcherServletに転送されます。

<?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">  
 <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>  
</web-app>


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow