欢迎访问 生活随笔!

凯发ag旗舰厅登录网址下载

当前位置: 凯发ag旗舰厅登录网址下载 > 前端技术 > javascript >内容正文

javascript

springmvc restful api接口实现 -凯发ag旗舰厅登录网址下载

发布时间:2024/10/12 javascript 27 豆豆
凯发ag旗舰厅登录网址下载 收集整理的这篇文章主要介绍了 springmvc restful api接口实现 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

【前言】

  面向资源的 restful 风格的 api 接口本着简洁,资源,便于扩展,便于理解等等各项优势,在如今的系统服务中越来越受欢迎。

  .net平台有webapi项目是专门用来实现restful api的,其良好的系统封装,简洁优雅的代码实现,深受.net平台开发人员所青睐,在后台服务api接口中,已经逐步取代了辉煌一时mvc controller,更准确地说,合适的项目使用更加合适的工具,开发效率将会更加高效。

  python平台有tornado框架,也是原生支持了restful api,在使用上有了很大的便利。

  java平台的springmvc主键在web开发中取代了struts2而占据了更加有力的地位,我们今天着重讲解如何在java springmvc项目中实现restful api。

 

【实现思路】

  restful api的实现脱离不了路由,这里我们的restful api路由由spring mvc 的 controller来实现。

【开发及部署环境】

开发环境:windows 7 ×64 英文版

     intellij idea 2017.2

部署环境:jdk 1.8.0

     tomcat 8.5.5

测试环境:chrome

        fiddler

【实现过程】

  1、搭建spring mvc maven项目

  这里的搭建步骤不再赘述,如有需要参考,请导航至博客:http://www.cnblogs.com/qixiaoyizhan/p/5819392.html

  2、新建控制器 studentcontroller

  为了体现restful api 我们采用注解,requestmapping("/api/student")

  具体的代码如下:

1 package controllers; 2 3 import org.springframework.web.bind.annotation.*; 4 5 @restcontroller 6 @requestmapping("/api/student") 7 public class studentcontroller { 8 9 @requestmapping(method = requestmethod.get) 10 public string get() { 11 return "{\"id\":\"1\",\"name\":\"1111111111\"}"; 12 } 13 14 @requestmapping(method = requestmethod.post) 15 public string post() { 16 return "{\"id\":\"2\",\"name\":\"2222222222\"}"; 17 } 18 19 @requestmapping(method = requestmethod.put) 20 public string put() { 21 return "{\"id\":\"3\",\"name\":\"3333333333\"}"; 22 } 23 24 @requestmapping(method = requestmethod.delete) 25 public string delete() { 26 return "{\"id\":\"4\",\"name\":\"4444444444\"}"; 27 } 28 29 @requestmapping(value = "/{id}",method = requestmethod.get) 30 public string get(@pathvariable("id") integer id) { 31 return "{\"id\":\"" id "\",\"name\":\"get path variable id\"}"; 32 } 33 }

  这里有get,post,put,delete分别对应 查询,添加,修改,删除四种对资源的操作,即通常所说的crud。

  spring mvc可实现restful的方式有@controller和@restcontroller两种方式,两种方式的区别如下:

  @controller的方式实现如果要返回json,xml等文本,方法体上需要额外添加@responsebody注解,例如: 

1   @responsebody //用于返回json数据或者text格式文本 2 @requestmapping(value = "/testjson", method = requestmethod.get) 3 public string testjson() { 4 return "{\"id\":\"1001\",\"name\":\"zhangsan\"}"; 5 }

  @restcontroller方式不需要写@responsebody,但是不能返回模型绑定数据和jsp视图,只能返回json,xml文本,仅仅是为了更加方便返回json资源而已。

 


  上述的rest方法中多写了个get方法: 

1 @requestmapping(value = "/{id}",method = requestmethod.get) 2 public string get(@pathvariable("id") integer id) { 3 return "{\"id\":\"" id "\",\"name\":\"get path variable id\"}"; 4 }

  该方法可以直接在url拼接一个参数,更加方便对资源的定向访问,例如查一个student list 可以默认空参数,而查询对应的某一个student详情信息,可以id=studentid 定向查询单条,使得我们对资源的访问更加快捷方便。


 

  还有一种更加简洁的写法,spring4.3中引进了{@getmapping、@postmapping、@putmapping、@deletemapping、@patchmapping}几种写法,让接口的声明更加地简洁。下面代码展示了用这种注解方式进行rest接口的定义:

1 package controllers; 2 3 import org.springframework.web.bind.annotation.*; 4 5 @restcontroller 6 @requestmapping("/api/student") 7 public class studentcontroller { 8 9 @getmapping() 10 public string get() { 11 return "{\"id\":\"1\",\"name\":\"1111111111\"}"; 12 } 13 14 @postmapping() 15 public string post() { 16 return "{\"id\":\"2\",\"name\":\"2222222222\"}"; 17 } 18 19 @putmapping() 20 public string put() { 21 return "{\"id\":\"3\",\"name\":\"3333333333\"}"; 22 } 23 24 @deletemapping() 25 public string delete() { 26 return "{\"id\":\"4\",\"name\":\"4444444444\"}"; 27 } 28 29 @getmapping(value = "/{id}") 30 public string get(@pathvariable("id") integer id) { 31 return "{\"id\":\"" id "\",\"name\":\"get path variable id\"}"; 32 } 33 }

【系统测试】

   运行系统,使用fiddler调用restful api接口:

  1.get方式

  2.post方式

  3.put方式

  4.delete方式

   

  5.get/id方式

   至此,可见我们的spring mvc restful api接口已经全部通过测试!

转载于:https://www.cnblogs.com/7tiny/p/7570010.html

总结

以上是凯发ag旗舰厅登录网址下载为你收集整理的springmvc restful api接口实现的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。

网站地图