Spring 3.0 RESTの実例を実現します.
回転:http://blog.csdn.net/leecho571/article/details/6559758
RESTについては何ですか?ここではこれ以上話しません.皆さん、行ってもいいです.http://blog.csdn.net/pilou5400/archive/2010/12/24/6096861.aspx紹介を見て、直接テーマに切り込みます.
これはrestスタイルの訪問で、Springは3.0からrestを全面的にサポートします.Springの強さに感嘆せざるを得ません.
プロジェクト構造
第一歩は常に配置であり、使用フレームは常に先に配置され、web.xmlに配置されている.
ページに異なるパラメータを入力して、異なる内容、入力アドレスを得ることもできます.http://localhost:8080/SpringREST/simple/88888今回実行したのがgetメソッドで、ID値を注釈で取得します.
Spring resttのAjaxに対するサポートについては、Ajaxはレスポンスを返してページに文字列を返します.respnseオブジェクトを獲得できる以上、問題は解決されます.我々は、get方法を改造します.
RESTについては何ですか?ここではこれ以上話しません.皆さん、行ってもいいです.http://blog.csdn.net/pilou5400/archive/2010/12/24/6096861.aspx紹介を見て、直接テーマに切り込みます.
これはrestスタイルの訪問で、Springは3.0からrestを全面的にサポートします.Springの強さに感嘆せざるを得ません.
プロジェクト構造
第一歩は常に配置であり、使用フレームは常に先に配置され、web.xmlに配置されている.
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
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_3_0.xsd">
<display-name></display-name>
<context-param>
<!--rest , , , -->
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/rest-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<!-- Servlet, Servlet -->
<servlet-name>rest</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<!-- , /* , JSP -->
<servlet-name>rest</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>/index.jsp</welcome-file>
</welcome-file-list>
</web-app>
第二ステップ:このファイルを設定します.
<?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:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"
default-lazy-init="true">
<description>Spring </description>
<!-- -->
<context:component-scan base-package="com.liqiu" />
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<!-- , -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/"></property> <!-- , -->
</bean>
</beans>
第三ステップ:具体的な実現類
package com.liqiu.controller;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/simple")
public class SimpleController {
// /simple/index ,
@RequestMapping("/index")
public String index(HttpServletRequest request ,HttpServletResponse response){
//response,request
request.setAttribute("message", "Hello,This is a example of Spring3 RESTful!");
return "index.jsp";
}
// ID , @PathVariable
@RequestMapping(value="/{id}",method=RequestMethod.GET)
public String get(@PathVariable String id,HttpServletRequest request ,HttpServletResponse response) throws IOException{
request.setAttribute("message", "Hello,This is a example of Spring3 RESTful!<br/>ID:"+id+"");
//response.getWriter().write("You put id is : "+id);
return "index.jsp";
//return null;
}
}
index.jspページ:
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
<title>Spring3 RESTful</title>
</head>
<body>
${message}
</body>
</html>
ブラウザに入力:http://localhost:8080/SpringREST/simple/index/効果が見られます.ページに異なるパラメータを入力して、異なる内容、入力アドレスを得ることもできます.http://localhost:8080/SpringREST/simple/88888今回実行したのがgetメソッドで、ID値を注釈で取得します.
Spring resttのAjaxに対するサポートについては、Ajaxはレスポンスを返してページに文字列を返します.respnseオブジェクトを獲得できる以上、問題は解決されます.我々は、get方法を改造します.
@RequestMapping(value="/{id}",method=RequestMethod.GET)
public String get(@PathVariable String id,HttpServletRequest request ,HttpServletResponse response) throws IOException{
//request.setAttribute("message", "Hello,This is a example of Spring3 RESTful!<br/>ID:"+id+"");
response.getWriter().write("You put id is : "+id);
//return "index.jsp";
return null;
}
index.jspページを改造する:
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
<title>Spring3 RESTful</title>
<SCRIPT TYPE="text/javascript">
function go(value){
var url = "/SpringREST/simple/"+value+"/";
var request = new XMLHttpRequest();
request.open("GET", url, true);
request.setRequestHeader("Content-Type","application/x-javascript;");
request.onreadystatechange = function() {
if (request.readyState == 4) {
if (request.status == 200){
if (request.responseText) {
document.getElementById("text").innerHTML = request.responseText;
}
}
}
};
request.send(null);
}
</SCRIPT>
</head>
<body>
${message}
<br>
Input the id of you will access object:<input id="id" type="text" size="7"><input type="button" value="Go" onclick="go(document.getElementById('id').value)">
<div id="text"></div>
</body>
</html>
アクセスhttp://localhost:8080/SpringREST/simple/index/を選択します.ページの入力ボックスに値を入力すると、戻りデータが表示されます.