私は春のMVCを初めて使用していますが、hello worldアプリケーションをデプロイしようとしていますが、jspページで常に「要求されたリソースが利用できません」というエラーが表示されます。Tomcat7を使用しています。ここにコードを貼り付けています..
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"
xsi:schemaLocation="http://Java.Sun.com/xml/ns/javaee
http://Java.Sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>HelloWorldSpring</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>
spring-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:context="http://www.springframework.org/schema/context"
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="net.viralpatel.spring3.controller" />
<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>
</beans>
アプリケーションのコントローラー
package net.viralpatel.spring3.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HelloWorldController {
@RequestMapping("/hello")
public ModelAndView helloWorld() {
String message = "Hello World, Spring 3.0!";
System.out.println(message);
return new ModelAndView("hello", "message", message);
}
}
hello.jsp
<html>
<head>
<title>Spring 3.0 MVC </title>
</head>
<body>
${message}
</body>
</html>
index.jsp
<html>
<head>
</head>
<body>
<a href="hello">Say Hello</a>
</body>
</html>
これは私のアプリケーションであり、プロジェクト構造のスクリーンショットも追加しています。
主な問題は<url-pattern>*.html</url-pattern>
。
私はあなたのコードに以下の変更を加えました、そして私のマシンで同じコードを実行することができます:
1)変更された<url-pattern>*.html</url-pattern>
〜<url-pattern>/</url-pattern>
2)コピーjstl-1.2.jar
はlib
フォルダにあります。
次のようにコントローラを変更するだけです
@Controller
@RequestMapping("/hello")
public class HelloWorldController {
@RequestMapping(method = RequestMethod.GET)
public String helloWorld(ModelMap model, HttpServletRequest request) {
String message = "Hello World, Spring 3.0!";
System.out.println(message);
model.addAttribute("message", message);
return "hello";
}
}
これがあなたの問題を解決することを願っています
同じ問題を感じました。私はjstl 1.2.jarを追加し、それは私のために働いた。
さて私も this のチュートリアルを実行しているときにこの問題に直面しました。上のチュートリアルとコードもこのチュートリアルからのものであると思われるため、spring-webmvc-xyz.RELEASE.jarを追加し、「asm」と「web.servlet」を削除します"瓶は私のために働いた。これが誰かが春を学ぶのに役立つことを願っています。
Web.xmlで以下を変更します
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/HelloWeb-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
フォルダー構造を確認したら、すべてのSpring jarをWeb-INFにあるlibフォルダーにコピーし、そこからインポートする必要があります。それはあなたの問題を解決するはずです