Spring MVC 2.5 annotation学習
この手の速い開発フレームワークを作りたいです.maven 2,spring 2.5,hibernate3.3きっと欠かせない.展示層はStruts 2とSpring MVCの間で長い間ためらっていたが、javaeye上の2つのフレームワークについての多くの議論も見た.spring2.5 mvcはannotationベースと呼ばれ、controllerはpojoであり、構成を大幅に削減することができる.これはとても魅力的な機能で、そこで少し時間をかけて勉強して、ついでに自分の学習過程を覚えます.
web.xml構成は標準的なspring構成です.
applicationContext.xmlは空のschema定義にすぎません.
ポイントはsimple-servletです.xml、このファイル名はwebと必要です.xmlで定義されたnameマッチング
簡単にするためにtestパッケージしか作っていないのでbase-package=「test」です.
私は2つのページを作りました.1つのMultiController、このspringmvcの初期バージョンに対応するMultiActionControllerは、複数のurlが1つのcontrollerにマッピングされています.コードは大幅に簡略化されています.
RequestMapping注釈によりurlを容易にマッチングでき、xmlとjavaの両方の修正は不要になります.
もう一つのPersonFormは、通常のオブジェクトの編集です
setupFormメソッド名はどうでもいい、キーは@RequestMapping注記、String s=request.getParameter("id");実は余計で、私は方法の中で多種のパラメータを加えることができることを確認するために、具体的にspring 2を参照します.5 reference 13.11.4. Supported handler method arguments and return types
添付ファイルはソースコード、使用するmaven、ダウンロードして、任意のディレクトリに解凍して、cmdはディレクトリに入って、mvn jetty:runは運行することができて、http://localhost:8080/で行ないます.
コードにはRunJettyクラスが追加されており、IDEでJettyを直接実行するのに便利であり、関連する最小依存パッケージはpomにある.xmlで定義、jetty-config.xmlは、ポート番号とappを変更できる簡単な構成で、現在は8080とsrc/main/webappです.cmdでmvn eclipse:eclipseを実行するとプロジェクトが生成され、eclipse importプロジェクトはRunJettyクラスでrunとdebugを直接実行でき、アクセスパスはmvn jetty:runと同じです.
web.xml構成は標準的なspring構成です.
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>test</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext*.xml</param-value>
</context-param>
<!-- Character Encoding filter -->
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!--Spring ApplicationContext -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>simple</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>simple</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
applicationContext.xmlは空のschema定義にすぎません.
<?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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<context:annotation-config />
</beans>
ポイントはsimple-servletです.xml、このファイル名はwebと必要です.xmlで定義されたnameマッチング
<?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-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<!--
- The controllers are autodetected POJOs labeled with the @Controller annotation.
-->
<context:component-scan base-package="test"/>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
</beans>
簡単にするためにtestパッケージしか作っていないのでbase-package=「test」です.
私は2つのページを作りました.1つのMultiController、このspringmvcの初期バージョンに対応するMultiActionControllerは、複数のurlが1つのcontrollerにマッピングされています.コードは大幅に簡略化されています.
package test;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class MultiController {
@RequestMapping("/hello.html")
public String sayHello(Model model) {
model.addAttribute("say", "hello");
return "test";
}
@RequestMapping("/nihao.html")
public String sayHello2(Model model) {
model.addAttribute("say", "nihao");
return "test";
}
}
RequestMapping注釈によりurlを容易にマッチングでき、xmlとjavaの両方の修正は不要になります.
もう一つのPersonFormは、通常のオブジェクトの編集です
package test;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.support.SessionStatus;
@Controller
@RequestMapping("/person.html")
public class PersonForm {
private static Person person = new Person();
@RequestMapping(method = RequestMethod.GET)
public String setupForm(@RequestParam("id") long id, ModelMap model,
HttpServletRequest request) {
String s = request.getParameter("id");
System.out.println("getId " + s);
model.addAttribute("person", getPerson(id));
return "personForm";
}
@RequestMapping(method = RequestMethod.POST)
public String processSubmit(@ModelAttribute("person") Person person,
BindingResult result, SessionStatus status) {
if (result.hasErrors()) {
return "personForm";
} else {
PersonForm.person = person;
System.out.println("person name set to:" + person.getName());
status.setComplete();
return "redirect:person.html?id=" + person.getId();
}
}
private Person getPerson(long id) {
return person;
}
}
setupFormメソッド名はどうでもいい、キーは@RequestMapping注記、String s=request.getParameter("id");実は余計で、私は方法の中で多種のパラメータを加えることができることを確認するために、具体的にspring 2を参照します.5 reference 13.11.4. Supported handler method arguments and return types
添付ファイルはソースコード、使用するmaven、ダウンロードして、任意のディレクトリに解凍して、cmdはディレクトリに入って、mvn jetty:runは運行することができて、http://localhost:8080/で行ないます.
コードにはRunJettyクラスが追加されており、IDEでJettyを直接実行するのに便利であり、関連する最小依存パッケージはpomにある.xmlで定義、jetty-config.xmlは、ポート番号とappを変更できる簡単な構成で、現在は8080とsrc/main/webappです.cmdでmvn eclipse:eclipseを実行するとプロジェクトが生成され、eclipse importプロジェクトはRunJettyクラスでrunとdebugを直接実行でき、アクセスパスはmvn jetty:runと同じです.