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> <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.bijian" /> <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.bijian.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,这是一个Spring3 REST的实例!"); 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,这是一个Spring3 REST的实例!<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/SpringREST2/simple/index,就可以看到效果。
也可以在页面输入不同的参数,获得不同的内容,输入地址:http://localhost:8080/SpringREST2/simple/abc,这次执行的就是get方法,通过注解获取ID值,效果:
关于Spring rest 对于Ajax的支持,其实响应Ajax就是通过response返回一个字符串到页面,既然能获得response对象,那问题就迎刃而解了,我们改造下get方法:
//根据ID获取不同的内容,通过@PathVariable 获得属性 @RequestMapping(value="/{id}",method=RequestMethod.GET) publicString get(@PathVariableString id,HttpServletRequest request ,HttpServletResponse response) throws IOException{ //request.setAttribute("message", "Hello,这是一个Spring3 REST的实例!<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 = "/SpringREST2/simple/"+value+"/"; var request = newXMLHttpRequest(); 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.getElementByIdx_x_x_x_x("text").innerHTML = request.responseText; } } } }; request.send(null); } </SCRIPT> </head> <body> ${message} <br> 请输入您将访问的Id标识:<input id="id" type="text" size="7"><input type="button" value="Go" onclick="go(document.getElementByIdx_x_x_x_x('id').value)"> <div id="text"></div> </body> </html>
访问http://localhost:8080/SpringREST2/simple/index,在页面里的输入框中输入值,可以看到返回的数据:
相关推荐
通过以上步骤,我们可以构建出一个完整的Spring 3.0 REST实例。这个实例展示了如何利用Spring的特性来创建符合REST原则的服务,提供高效、可扩展且易于使用的API。在实际项目中,根据具体需求,还可以进一步优化和...
Spring 3.0 MVC 和 REST 是 Java Web 开发中的重要组成部分,它们为构建现代、高效的应用程序提供了强大的框架支持。本文将深入探讨这两个概念以及如何通过一个入门实例来理解它们。 Spring MVC(Model-View-...
这个压缩包"spring3.0_doc_api"包含的是Spring 3.0的官方API文档,通常以CHM(Compiled HTML Help)格式呈现,这种格式便于离线查阅和搜索。 **Spring框架核心概念** 1. **依赖注入(Dependency Injection, DI)**...
尚学堂的Spring学习笔记.doc可能包含对这些特性的详细解释、实例代码以及如何在实际项目中应用的指导,对于想要深入理解Spring 3.0的开发者来说是一份宝贵的参考资料。通过阅读这份笔记,你可以系统地学习Spring 3.0...
Spring 3.0 MVC 框架是 Spring 的 Web 组件,提供了丰富的功能,为建设强大的 Web 应用程序。它可以毫不费力地与其他流行的 Web 框架集成,如 Struts、WebWork、Java Server Faces 和 Tapestry。Spring 3.0 MVC 框架...
本文将深入探讨Spring 3.0版本的Model-View-Controller(MVC)架构,并通过一个名为"SpringMvcDemo1"的实际项目实例来展示其核心概念和使用方法。 一、Spring MVC简介 Spring MVC是Spring框架的一部分,它遵循MVC...
3. **RESTful Web服务支持**:Spring3.0增加了对RESTful服务的支持,简化了构建REST API的过程。 4. **注解驱动的数据格式化**:通过注解如`@DateTimeFormat`和`@NumberFormat`,开发者可以轻松地定义日期和货币的...
在本文中,我们将深入探讨如何在Spring 3.0中整合MVC框架与RESTful服务,并结合Maven构建项目。RESTful(Representational State Transfer)是一种软件架构风格,用于设计网络应用程序,尤其适用于Web服务。Spring ...
spring mvc 包括 实现各种结构url 和get post 方式 跳转传参 提交等实例,有注释 是初学springmvc 必备入门级 参考.只需5分钟,看了代码就能让你掌握 spring mvc rest 的各种实现
完成以上步骤后,你就可以在Spring 3.0应用中使用DWR 3.0进行AJAX通信了,从而实现更动态、响应更快的Web界面。这种整合使得开发者能充分利用Spring的强大力量,同时享受到DWR带来的直观、高效的客户端与服务器端...
Spring3MVC-REST-HelloWorld 是一个基础的示例,用于展示如何在Spring框架的MVC模块中实现RESTful Web服务。这个实例是初学者理解Spring MVC与REST结合使用的理想起点。REST(Representational State Transfer)是一...
4. **RESTful支持**:Spring 3.0加强了对RESTful风格的Web服务的支持,提供了`@RequestMapping`等注解,便于构建REST API。 5. **更强大的数据绑定**:支持双向数据绑定,使模型和视图之间的数据同步更为简单。 6....
在本项目中,"spring boot3+jpa+lombok+mapstruct实现的restful api例子"是一个集成多种技术的示例,旨在展示如何高效地构建RESTful API服务。下面将详细介绍这些关键技术及其相互间的配合。 1. **Spring Boot 3**:...
- **Web层**:Spring 3.0在Web层添加了多项新特性,如REST支持、MVC框架的改进等。 ### III. 核心技术 #### 3. IoC容器 IoC容器是Spring框架的核心,它负责管理Bean的生命周期和依赖注入。IoC容器的主要特点包括:...
第15章:对Spring MVC框架进行详细介绍,对REST风格编程方式进行重点讲解,同时还对Spring 3.0的校验和格式化框架如果和Spring MVC整合进行讲解。 第16章:有别于一般书籍的单元测试内容,本书以当前最具实战的...
- **容器使用**:一旦Spring容器被实例化并配置好,就可以通过它来获取Bean实例并管理Bean的生命周期。 ##### 3.2 Bean概述 - **命名Bean**:每个Bean都有一个唯一的名称,用于在容器中识别和获取该Bean。 - **...
下面将详细介绍Spring框架的核心概念、特点及其3.0版本中的新功能。 ### 一、Spring框架概述 #### 1.1 依赖注入与控制反转 依赖注入(Dependency Injection, DI)是一种软件设计模式,它提倡通过构造函数、方法或...
通过以上知识点的总结,可以看出Spring 3.0版本在原有基础上做了大量的改进和完善,不仅增强了核心功能,还引入了许多新的特性,使得Spring框架更加完善和易于使用。这对于开发者来说无疑是一大福音。