【Spring学习笔记-MVC-18.1】Spring MVC实现RESTful风格-同一资源,多种展现:xml-json-html

概要



要实现Restful风格,主要有两个方面要讲解,如下:

1. 同一个资源,如果需要返回不同的形式,如:json、xml等;

不推荐的做法:

  • /user/getUserJson
  • /user/getUserXML

这样做不符合Restful的原则,1个资源相当于变成了两个资源;

2. 对同一资源的CRUD操作

不推荐的做法:

  • /user/addUser/
  • /user/getUser/123
  • /user/deleteUser/123
  • /user/updateUser/123

这样做也不符合Restful的原则,1个资源相当于变成了多个资源;

本篇文章将介绍《 同一个资源,如果需要返回不同的形式,如:json、xml等;》如何实现。

至于《对同一资源的CRUD操作》,将留在下一篇文件讲解。


内容协商介绍


RESTful服务中很重要的一个特性即是同一资源,多种表述,也即如下面描述的三种方式:

  • 方式1:使用http request header: Accept
  1. GET /user/123 HTTP/1.1
  2. Accept: application/xml                 //将返回xml格式数据
  3. GET /user/123 HTTP/1.1
  4. Accept: application/json               //将返回json格式数据
  • 方式2:使用扩展名
  1. /user/123.xml  将返回xml格式数据
  2. /user/123.json 将返回json格式数据
  3. /user/123.html 将返回html格式数据
  • 方式3:使用参数
  1. /user/123?format=xml          //将返回xml数据
  2. /user/123?format=json          //将返回json数据

以上三种优缺点比较

  • 使用Accept header   ==>由于浏览器的差异,一般不使用此种方式

这一种为教科书中通常描述的一种,理想中这种方式也是最好。但由于浏览器的差异,发送上来的Accept Header头是不一样的。 将导致服务器不知要返回什么格式的数据给你。 下面是浏览器的Accept Header

  1. chrome:
  2. Accept:application/xml,application/xhtml+xml,textml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
  3. firefox:
  4. Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  5. IE8:
  6. Accept:image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/x-silverlight, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*
  • 使用扩展名

丧失了同一url多种展现的方式,但现在这种在实际环境中是使用最多的,因为更加直观,方便。

  • 使用参数

现在很多open API是使用这种方式,但因为要编写的字符较多,所以不如“使用扩展名”使用的多。


使用ContentNegotiatingViewResolver内容协商视图解析器



ContentNegotiatingViewResolver可用于实现上述三种方式的Restful的风格,因为使用Accept不是很推荐,所以我们的配置使用了“使用扩展名”和“使用参数”这两种方式。下面直接看下配置吧:

我们在A处配置的是JSON视图对象,而B处配置的是XML视图对象,他们都是默认的候选视图对象,会覆盖对应的视图解析器返回的视图对象。简单的说,就是:

1. 如果资源的URL形如:

  • /user/123.json   或
  • /user/123?format=json

则直接返回A处对应的视图对象,即JSON格式的视图对象;

2. 如果资源的URL形如:

  • /user/123.xml
  • /user/123?format=xml

则直接返回B处对应的视图对象,即XML格式的视图对象;

有一点需要说明,xml解析需要的jar包:

  1. xpp3_min-xxx.jar;
  2. xstream-xxx.jar。

3. 如果资源的URL形如:

  • /user/123.html
  • /user/123?format=html

则由C处对应的InternalResourceViewResolver视图解析器解析;

4. 如果资源的URL不带任何参数,形如:

  • /user/123

则由C处对应的InternalResourceViewResolver视图解析器解析,因为已经默认制定 p:defaultContentType="text/html";


配置文件的完整代码如下:


  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  10. http://www.springframework.org/schema/mvc
  11. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
  12. <!-- 扫描web包,应用Spring的注解 -->
  13. <context:component-scan base-package="com.ll.web"/>
  14. <mvc:annotation-driven/>
  15. <!-- 协商多种视图解析器 -->
  16. <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"
  17. p:order="0"
  18. p:ignoreAcceptHeader="true"
  19. p:favorPathExtension="true"
  20. p:favorParameter="true"
  21. p:parameterName="format"
  22. p:defaultContentType="text/html">
  23. <!-- 用来定义哪些扩展名(如:/user/123.json),或协商参数值(如:/user/123?format=xml)是可识别的 -->
  24. <property name="mediaTypes">
  25. <map>
  26. <entry key="html" value="text/html" />
  27. <entry key="xml" value="application/xml" />
  28. <entry key="json" value="application/json" />
  29. </map>
  30. </property>
  31. <property name="defaultViews">
  32. <list>
  33. <!-- for application/json -->
  34. <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView"/>
  35. <!-- for application/xml -->
  36. <bean class="org.springframework.web.servlet.view.xml.MarshallingView">
  37. <property name="marshaller">
  38. <bean class="org.springframework.oxm.xstream.XStreamMarshaller"/>
  39. </property>
  40. </bean>
  41. </list>
  42. </property>
  43. </bean>
  44. <!-- Excel及PDF视图解析器配置 -->
  45. <bean class="org.springframework.web.servlet.view.BeanNameViewResolver"
  46. p:order="10" />
  47. <!-- 配置视图解析器,将ModelAndView及字符串解析为具体的页面,默认优先级最低 -->
  48. <bean
  49. class="org.springframework.web.servlet.view.InternalResourceViewResolver"
  50. p:order="100"
  51. p:viewClass="org.springframework.web.servlet.view.JstlView"
  52. p:prefix="/resource/jsp/"
  53. p:suffix=".jsp" />
  54. <!-- spring mvc对静态资源的访问 -->
  55. <mvc:resources mapping="/resource/**" location="/resource/**" />
  56. </beans>

控制层代码



测试


1. json格式

http://localhost:8080/SpringMVCTest/test/list.json 或

http://localhost:8080/SpringMVCTest/test/list?format=json 


2. xml格式

http://localhost:8080/SpringMVCTest/test/list?format=xml 或

http://localhost:8080/SpringMVCTest/test/list.xml


3.html格式

http://localhost:8080/SpringMVCTest/test/list.html

4. 不带任何参数

http://localhost:8080/SpringMVCTest/test/list 或

http://localhost:8080/SpringMVCTest/test/list.xxx  (不是上述提到的后缀名) 或

http://localhost:8080/SpringMVCTest/test/list?format=xxx  (不是上述提到的后缀名)

其他


博客:

http://www.cnblogs.com/ssslinppp

http://blog.sina.com.cn/spstudy

淘宝-代做毕设:

http://shop110473970.taobao.com/?spm=a230r.7195193.1997079397.42.AvYpGW

http://shop125186102.taobao.com/?spm=a1z10.1-c.0.0.SsuajD

来自为知笔记(Wiz)

附件列表

时间: 2024-10-28 21:16:07

【Spring学习笔记-MVC-18.1】Spring MVC实现RESTful风格-同一资源,多种展现:xml-json-html的相关文章

【Spring学习笔记-MVC-15.1】Spring MVC之异常处理=404界面

作者:ssslinppp       异常处理请参考前篇博客:<[Spring学习笔记-MVC-15]Spring MVC之异常处理>http://www.cnblogs.com/ssslinppp/p/4610043.html : 在遇到404错误时,如何跳转到404界面?下面将介绍之. 404.jsp 在web.xml中定义 <error-page> <exception-type>java.lang.Throwable</exception-type>

【Spring学习笔记-MVC-13.2】Spring MVC之多文件上传

作者:ssslinppp       1. 摘要 前篇文章讲解了单文件上传<[Spring学习笔记-MVC-13]Spring MVC之文件上传>http://www.cnblogs.com/ssslinppp/p/4607043.html (请参考).本文主要讲多文件上传的过程. 主要区别在于控制层代码不同,同时,jsp代码也有相应修改. 2. 添加jar包 commons-fileupload-1.2.2.jar: commons-io-2.0.1.jar: 3. 配置CommonsMul

【Spring学习笔记-MVC-5】利用spring MVC框架,实现ajax异步请求以及json数据的返回

作者:ssslinppp      时间:2015年5月26日 15:32:51 1. 摘要 本文讲解如何利用spring MVC框架,实现ajax异步请求以及json数据的返回. Spring MVC与json参考文章:[spring学习笔记-mvc-3]返回json数据-方式1  和 [spring学习笔记-mvc-4]返回json数据-方式2. 使用到的技术主要如下: Ajax:使用JQuery 提供的ajax:==>需要引入jquery.min.js文件: Spring MVC: Jso

Spring学习笔记(四)-- Spring事务全面分析

通过本系列的文章对Spring的介绍,我们对Spring的使用和两个核心功能IOC.AOP已经有了初步的了解,结合我个人工作的情况,由于项目是金融系 统,那对事务的控制是必不可少的,并且是非常严格的控制.根据我对项目的研究,它在管理模块用的是JTA的事务,而在交易模块用的是JDBC的事 务,但是,所有的这些事务的使用,都是用Spring封装后的编程式事务.我在看完<Spring In Action>后,在网上看了下大家对Spring事务的理解,貌 似都没有真正的文章是去全面剖析Spring对这

【Spring学习笔记-MVC-1.0】Spring MVC架构介绍

作者:ssslinppp       1. 核心架构图 2. 核心架构的具体流程步骤 3. 具体的核心开发步骤 4. 常用注解 5. <mvc:annotation-driven>配置 6. 其他配置 来自为知笔记(Wiz)

Spring学习笔记(十七)----Spring中的事务

事务就是一组数据库操作,但这组操作是具有原子性的(atomic).所谓原子操作,即这组数据库操作要么就都执行成功,要么就一个也没执行.当有一些操作成功了("成功"指数据库里的数据已更新或提交),但中间出现异常,后边的也就无法执行时,事务要回滚,即恢复到什么也没执行以前的状态. 举个比较常见的例子,一位顾客要进行银行转帐,把100元从A帐户转到B帐户,一般的过程是把A帐户的总额减去100,B帐户的总额加上100(只考虑最简单情况).当在A帐户总额减去100后出现异常情况,使得无法再对B帐

spring学习笔记(26)——spring整合ehcache

ehcache配置文件 spring配置文件中配置 使用 ehcache配置文件 在src下创建ehcache.xml <?xml version="1.0" encoding="UTF-8"?> <ehcache name="es"> <diskStore path="java.io.tmpdir"/> <!-- name属性是根据需要自行取名 --> <!-- cach

Spring学习笔记(一)

Spring学习笔记(一) Spring核心思想: IOC:  Inversion Of Control (控制反转) / DI: Dependency Injection (依赖注入) AOP: Aspect Oriented Programming (面向切面编程) IOC 1. 简单的应用 Model package com.wangj.spring.model; public class User { private String username; private String pas

【Spring学习笔记-MVC-3.1】SpringMVC返回Json数据-方式1-扩展

<Spring学习笔记-MVC>系列文章,讲解返回json数据的文章共有3篇,分别为: [Spring学习笔记-MVC-3]SpringMVC返回Json数据-方式1:http://www.cnblogs.com/ssslinppp/p/4528892.html [Spring学习笔记-MVC-4]返回Json数据-方式2:http://www.cnblogs.com/ssslinppp/p/4530002.html [Spring学习笔记-MVC-3.1]SpringMVC返回Json数据-