1

私は2つのjspを持っている春のmvcの初心者です:- 1.Webcontent/index.jsp:これはうまくいきます。インデックス ファイルには、次のようなハイパーリンク テキストがあります。

      <a href="hello.html" rel="nofollow">Say Hello</a>
  1. WebContent/WEB-INF/jsp/hello.jsp : 本文に次のように表示されます

         ${message}
    

プロジェクトコンテナは次のとおりです:-

 @Controller
  public class HelloWorldContainer {

 @RequestMapping(value="/hello", method=RequestMethod.GET)
    public ModelAndView helloWorld() {

        String message = "Hello World, Spring 3.0!";
        return new ModelAndView("hello.jsp", "message", message);
    }
}

以下は WebContent/WEB-INF/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>*.*</url-pattern>
</servlet-mapping>

WebContent/WEB-INF/spring-servlet.xml :-

 <context:component-scan
    base-package="org.explorear.ar" />

<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>

私の問題:-このプロジェクトをEclipseからTomcatサーバーで実行すると、インデックスファイルが完全に正常に表示されます。しかし、インデックス ファイル内のテキストが hello.html にハイパーリンクされているため、HTTP ステータス 404 が引き続き発生します。

4

3 に答える 3

0

私は何かが欠けているかもしれませんが、私は思う

org.springframework.web.context.ContextLoaderListener

context-param は web.xml で提供する必要があります

于 2013-04-22T14:47:45.203 に答える
0

これが 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">

  <display-name>Spring3MVC</display-name>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml
    </param-value>
  </context-param>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
   <servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>/WEB-INF/spring-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>
  <session-config>  
  <session-timeout>10</session-timeout>  
</session-config> 
</web-app>
于 2014-02-19T09:12:25.707 に答える
0

この行でページ名全体を返しています

return new ModelAndView("hello.jsp", "メッセージ", メッセージ);

そして、戻り値の末尾に .jsp を付けた ViewResolver を使用しています。だから私の提案ではこれを使う

return new ModelAndView("こんにちは", "メッセージ", メッセージ);

于 2013-04-22T11:22:47.443 に答える