私は2つのjspを持っている春のmvcの初心者です:- 1.Webcontent/index.jsp:これはうまくいきます。インデックス ファイルには、次のようなハイパーリンク テキストがあります。
<a href="hello.html" rel="nofollow">Say Hello</a>
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 が引き続き発生します。