Застрял в учебнике Spring MVC для новичков - PullRequest
0 голосов
/ 03 июня 2010

Я застрял в этом учебнике Spring MVC для новичков: http://sites.google.com/site/springmvcnetbeans/step-by-step/

Я пункт 1.12 «Попробуйте приложение». Когда я вставляю в адресную строку hello.htm, он не работает, но hello.jsp работает. Но я думаю, что смысл был как-то скрыть это расширение JSP.

Я точно следовал инструкциям. Что я мог сделать не так?

skaffman предложил опубликовать файл web.xml и файл сопоставления сервлетов, так что вот они. Я добавил только то, что сказано в руководстве (но с другим именем пакета, остальные генерируются NetBeans)

web.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>springsample</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springsample</servlet-name>
        <url-pattern>*.htm</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>

springsample-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: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-2.5.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.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/jsp/"
          p:suffix=".jsp" />

    <!--
    The index controller.
    -->
    <bean name="indexController"
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"
          p:viewName="index" />

    <bean name="/hello.htm"
            class="controllers.HelloController" />

</beans>

Ответы [ 2 ]

1 голос
/ 03 июня 2010

Я вижу несколько отличий.Файл в руководстве называется springapp-servlet.xml, а не springsample-servlet.xml (см. Шаг 1.8), и он содержит только один компонент, hello.htm.Там нет упоминания о springsample-servlet.xml нигде в целом.

0 голосов
/ 03 июня 2010

В руководстве рассказывается, как поместить файл в корневой каталог webapp web / hello.jsp, но вы сказали Spring, чтобы искать его в /WEB-INF/jsp/hello.jsp. Переместили ли вы файл в эту папку? Тот факт, что вы можете найти его в /springsample/hello.jsp, указывает на то, что вы этого не сделали.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...