SpringMVC-コントローラークラス名ハンドラーマッピングの例
次の例は、Spring WebMVCフレームワークを使用してコントローラークラス名ハンドラーマッピングを使用する方法を示しています。ザ・ControllerClassNameHandlerMappingclassは、規則ベースのハンドラーマッピングクラスであり、URL要求を構成で指定されたコントローラーの名前にマップします。このクラスはコントローラー名を受け取り、先頭に「/」が付いた小文字に変換します。
例-HelloControllerは「/ hello *」URLにマップします。
<beans>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "/WEB-INF/jsp/"/>
<property name = "suffix" value = ".jsp"/>
</bean>
<bean class = "org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<bean class = "com.tutorialspoint.HelloController" />
<bean class = "com.tutorialspoint.WelcomeController"/>
</beans>
たとえば、URIの場合、上記の構成を使用します
/helloWorld.htmまたは/ hello {any letter} .htmが要求されると、DispatcherServletはその要求をに転送します HelloController。
/welcome.htmが要求された場合、DispatcherServletは要求をに転送します WelcomeController。
/Welcome.htmは、Wが大文字の場合に要求され、DispatcherServletはコントローラーを検出せず、サーバーは404ステータスエラーをスローします。
まず、動作するEclipse IDEを配置し、次の手順に従って、Spring WebFrameworkを使用して動的フォームベースのWebアプリケーションを開発します。
ステップ | 説明 |
---|---|
1 | Spring MVC-Hello Worldの章で説明されているように、パッケージcom.tutorialspointの下にTestWebという名前のプロジェクトを作成します。 |
2 | com.tutorialspointパッケージの下にJavaクラスHelloControllerおよびWelcomeControllerを作成します。 |
3 | jspサブフォルダの下にビューファイルhello.jsp、welcome.jspを作成します。 |
4 | 最後のステップは、以下で説明するように、ソースファイルと構成ファイルのコンテンツを作成し、アプリケーションをエクスポートすることです。 |
HelloController.java
package com.tutorialspoint;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
public class HelloController extends AbstractController{
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView model = new ModelAndView("hello");
model.addObject("message", "Hello World!");
return model;
}
}
WelcomeController.java
package com.tutorialspoint;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
public class WelcomeController extends AbstractController{
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView model = new ModelAndView("welcome");
model.addObject("message", "Welcome!");
return model;
}
}
TestWeb-servlet.xml
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
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">
<bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "/WEB-INF/jsp/"/>
<property name = "suffix" value = ".jsp"/>
</bean>
<bean class = "org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<bean class = "com.tutorialspoint.HelloController" />
<bean class = "com.tutorialspoint.WelcomeController"/>
</beans>
hello.jsp
<%@ page contentType="text/html; charset = UTF-8" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2>${message}</h2>
</body>
</html>
welcome.jsp
<%@ page contentType = "text/html; charset=UTF-8" %>
<html>
<head>
<title>Welcome</title>
</head>
<body>
<h2>${message}</h2>
</body>
</html>
ソースファイルと構成ファイルの作成が完了したら、アプリケーションをエクスポートします。アプリケーションを右クリックし、Export → WAR File オプションと保存します TestWeb.war Tomcatのwebappsフォルダーにあるファイル。
ここで、Tomcatサーバーを起動し、標準のブラウザーを使用してwebappsフォルダーから他のWebページにアクセスできることを確認します。URLを試してください-http://localhost:8080/TestWeb/helloWorld.htm Spring Webアプリケーションで問題がなければ、次の画面が表示されます。
URLを試す http://localhost:8080/TestWeb/hello.htm Spring Webアプリケーションで問題がなければ、次の画面が表示されます。
URLを試す http://localhost:8080/TestWeb/welcome.htm Spring Webアプリケーションで問題がなければ、次の画面が表示されます。
URLを試す http://localhost:8080/TestWeb/Welcome.htm Spring Webアプリケーションで問題がなければ、次の画面が表示されます。