0

Apache Tomcat で Spring MVC 3.0 と Hibernate をセットアップし、アプリケーションをエラーなしで起動しました。

redirect.jspただし、(ウェルカム ファイル)からホーム コントローラー ( ) に要求をルーティングすることはできます/Home


これが起こるはずのことです:

  1. ウェルカム ファイルredirect.jspは、次を使用してリクエストを送信します<%response.sendRedirect(/Home)%>

  2. 私のホームコントローラー( )は、あるビューを/home返しますindexWEB-INF/views


これは私のものです:注釈を介しweb.xmlてホームコントローラー()をマッピングしましたが、まだ見つかりません。/Homeweb.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 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">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>app</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>app</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet>
        <servlet-name>Home</servlet-name>
        <servlet-class>com.app.controller.spring.HomeController</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Home</servlet-name>
        <url-pattern>/Home</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>redirect.jsp</welcome-file>
    </welcome-file-list>
</web-app>

これは私application-context.xmlのスニペットです:

<!--bean id="propertyConfigurer"
      class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
      p:location="/WEB-INF/jdbc.properties" />-->

<!-- Activates various annotations to be detected in bean classes --> 
<context:annotation-config />
<!-- Scans the classpath for annotated components that will be auto-registered as Spring beans.   For example @Controller and @Service. Make sure to set the correct base-package--> 
<context:component-scan base-package="com.yourmarketnet.mvc" />    
<!-- Configures the annotation-driven Spring MVC Controller programming model.  Note that, with Spring 3.0, this tag works in Servlet MVC only!  --> 
<mvc:annotation-driven />      
<!-- mapping of static resources-->
<mvc:resources mapping="/resources/**" location="/resources/" />
<import resource="hibernate-context.xml" /

>


これは私のapp-servletです:

<?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:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

    <!--
    Most controllers will use the ControllerClassNameHandlerMapping above, but
    for the index controller we are using ParameterizableViewController, so we must
    define an explicit mapping for it.
    -->
    <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="index.htm">indexController</prop>
            </props>
        </property>
    </bean>


    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"     
        p:prefix="/WEB-INF/views/" p:suffix=".jsp" p:viewClass="org.springframework.web.servlet.view.JstlView" />
    <!--
    The index controller.
    -->
    <bean name="indexController"
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"
          p:viewName="index" />

</beans>

ただし、404エラーが発生します。

要求されたリソース ( /Home) は利用できません。


私が実際にやりたいのは、を削除しredirect.jsp、アプリケーションを\Homeコントローラーに移動さlaunch/startupせ、\Homeコントローラーがインデックスビューまたはその他のビューを返すことです。

4

1 に答える 1

0

私が最初に気付いたのは、web.xml で config location を呼び出しているapplicationContext.xmlが、後でapplication-context.xml. 実際に名前が付けられていることを確認してくださいapplicationContext.xml。また、web.xml から「ホーム」サーブレットを削除することもできます。これは、dispatcherServlet を介して Spring によって処理されます。最後に、 でSimpleUrlHandlerMappingマッピングを に定義しますが、リクエストをで処理するかどうかもindex.html定義する必要があります。それが役立つことを願っています。HomeHomeindexController

于 2012-05-25T19:24:49.173 に答える