这是一个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>
第二步:配置rest-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: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 rest 对于Ajax的支持,其实响应Ajax就是通过response返回一个字符串到页面,既然能获得response对象,那问题就迎刃而解了,我们改造下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/
,在页面里的输入框中输入值,可以看到返回的数据:
转载:http://blog.csdn.net/leecho571/article/details/6559758
分享到:
相关推荐
虽然未明确提及,但通常实现RESTful服务需要一个服务器端框架,如Spring Boot、Express.js等。这个案例可能使用了类似的技术,提供了一个快速开发和部署RESTful API的环境。 7. **开发文档** 自带的开发文档可能...
1、创建新的Spring Boot Rest项目 2、创建业务相关的实体类,使用@Entity标记 3、创建repository,相当于端点 4、创建SpringBoot Application入口 5、启动应用入口作为服务器进行测试 推荐使用VSCode的Thunder ...
在这个案例中,我们专注于SpringCloud的核心组件之一——Eureka,它是服务发现的重要工具。服务发现允许微服务之间找到并互相通信,使得系统具有更好的可扩展性和解耦性。 Eureka是Netflix开发的一个基于REST的服务...
spring boot 实践学习案例,与其它组件结合如 mybatis、jpa、dubbo、redis、mongodb、memcached、kafka、rabbitmq、activemq、elasticsearch、security、shiro等 #### Spring Boot 版本 - 2.0.3.RELEASE #### 模块...
目录包含First React动手操作目录包含第二个React动手实践目录包含第三次React动手操作目录包含第四次React动手操作目录包含第五个React动手...动手实践目录包含第九个React动手实践该目录包含Spring REST案例研究
【标题】"Spring+Mybatis+REST全注解Demo"是一个综合性的开发示例,它展示了如何使用Spring框架...这个Demo为初学者提供了一个了解和学习Spring、Mybatis和RESTful API集成的实践案例,有助于深入理解和掌握这些技术。
15.尚硅谷_SpringCloud_Rest微服务案例-总体概述.avi视频教程则聚焦于基于RESTful API的微服务实战,主要讲解以下知识点: 1. RESTful API设计原则:包括资源定位、HTTP方法的使用、状态码的正确设置等,旨在提高...
17.硅谷学习_SpringCloud_Rest微服务案例-API公共模块和部门Entity步骤 18.硅谷学习_SpringCloud_Rest微服务案例-部门服务提供者 19.硅谷学习_SpringCloud_Rest微服务案例-部门服务消费者 20.硅谷学习_Spring...
在IT行业中,Spring框架和Web服务(Web Service)是两个重要的技术领域,它们在构建分布式系统和企业级应用中发挥着关键作用。本示例"Spring+webservice例子"聚焦于如何结合Spring框架来实现Web服务,特别是侧重于...
### Spring Boot 案例详解 #### 知识点一:Spring Boot 入门与启动配置 **描述:** Spring Boot 是一个简化 Spring 应用程序开发的框架,它简化了配置过程,允许开发者快速搭建应用程序。本章节将介绍如何使用 ...
在项目结构中,`SpringRESTAPI-TransactionHandle-master`很可能包含了源代码、测试用例和配置文件。源代码目录可能有`src/main/java`,其中包含了控制器(Controllers)、服务(Services)和Repository(数据访问层...
Spring-Security结合JWT 实现前后端分离完成权限验证功能案例,案例中,主要完成用户登录获取Token,通过Token访问Rest接口,没有权限或授权失败时返回JSON,前端根据状态码进行重新登录;案例中的用户名称: jake_j...
Spring Cloud 是一个基于 Spring Boot 实现的云应用开发工具集,它为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态)...
在这个“开发REST的简单例子”中,我们将探讨如何使用Spring框架来创建一个RESTful API。 首先,让我们了解REST的基本原则: 1. 客户端-服务器架构:客户端和服务器之间有明确的职责划分,客户端负责用户界面和用户...
SpringCloud 是一个基于 Spring Boot 实现的云应用开发工具集,它为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态)...
Spring Rest Docs 是一个强大的工具,用于自动化创建API的文档。它与Spock的结合使用能够进一步简化测试和文档生成的过程,特别是在确保开发人员在编写测试时有足够休息的情况下。在这个项目"SpringRestDocs-Spock...
在本文中,我们将深入探讨Spring Rest的实践应用,以及如何通过实际案例来理解其核心概念和技术。Spring Rest是Spring框架的一部分,用于构建RESTful(Representational State Transfer)Web服务。REST是一种架构...
在本案例中,我们将深入探讨SpringCloud的核心组件之一——Eureka,它是SpringCloud中的服务发现机制。 Eureka是一个基于REST的服务,用于定位服务,使采用微服务架构的应用程序能够彼此发现并通信。在SpringCloud...