作者:手机用户2502874905 | 来源:互联网 | 2023-10-17 14:38
ch06-接口架构风格RESTful1.1认识RESTful1.1.1RESTful架构风格1.2RESTful注解1.3RESTful风格的使用1.3.1加入Maven依赖1.3
ch06-接口架构风格 RESTful 1.1 认识 RESTful 1.2 RESTful 注解 1.3 RESTful 风格的使用 1.3.1 加入Maven依赖 1.3.2 修改 application.properties 文件 1.3.3 编写Controller 1.3.4 查询测试 1.3.5 添加测试 1.3.6 修改测试 1.3.7 删除测试 1.4 RESTful 优点 1.5 RESTful 总结
接口 : API(Application Programming Interface,应用程序接口)是一些预先定义的接口(如函数、HTTP接口),或指软件系统 不同组成部分衔接的约定。 用来提供应用程序 与开发人员基于某软件 或硬件得以访问的一组例程 ,而又无需访问源码,或理解内部工作机制 的细节。
接口 (API): 可以指访问 servlet, controller 的 url, 调用其他程序的 函数
架构风格: api组织方式 就是一个传统的:
http: / / localhost: 9002 / mytrans/ addStudent? name= lisi& age= 26
在地址上提供了 访问的资源名称addStudent, 在其后使用了get方式传递参数。
1.1 认识 RESTful 1.1.1 RESTful架构风格 REST :(英文:Representational State Transfer , 中文:表现层状态转移)。 REST:是一种接口的架构风格和设计的理念,不是标准。 优点: 更简洁,更有层次
表现层状态转移 : 表现层就是视图层, 显示资源的, 通过视图页面,jsp等等显示操作资源的结果。 状态: 资源变化 转移: 资源可以变化的。 资源能创建,new状态, 资源创建后可以查询资源, 能看到资源的内容, 这个资源内容 ,可以被修改, 修改后资源 和之前的不一样。
1.2 RESTful 注解 Spring Boot 开发 RESTful 主要是几个注解实现
@PathVariable :获取 url 中的数据。 该注解是实现 RESTful 最主要的一个注解
@GetMapping :接收 get 方式的请求,等同于 @RequestMapping( method=RequestMethod.GET)。
@PostMapping :接收和处理 Post 方式的请求,等同于 @RequestMapping( method=RequestMethod.POST)。
@PutMapping :接收 put 方式的请求,可以用 PostMapping 代替,等同于 @RequestMapping( method=RequestMethod.PUT)。
@DeleteMapping :接收 delete 方式的请求,可以使用 GetMapping 代替,等同于 @RequestMapping( method=RequestMethod.DELETE)。
@RestController : 符合注解, 是@Controller 和@ResponseBody组合。 在类的上面使用@RestController , 表示当前类者的所有方法都加入了 @ResponseBody
1.3 RESTful 风格的使用 1.3.1 加入Maven依赖 < dependencies> < dependency> < groupId> org.springframework.boot groupId> < artifactId> spring-boot-starter-web artifactId> dependency> < dependency> < groupId> org.springframework.boot groupId> < artifactId> spring-boot-starter-test artifactId> < scope> test scope> dependency> dependencies>
1.3.2 修改 application.properties 文件 server.port&#61;9001 server.servlet.context-path&#61;/
1.3.3 编写Controller package co. suyv. controller ; import org. springframework. web. bind. annotation. * ; &#64;RestController public class MyRestController { &#64;GetMapping ( "/student/{studentId}" ) public String queryStudent ( &#64;PathVariable ( value &#61; "studentId" ) Integer id) { return "查询学生 studentId&#xff1a;" &#43; id; } &#64;PostMapping ( "/student/{name}/{age}" ) public String creatStudent ( &#64;PathVariable ( "name" ) String name, &#64;PathVariable ( "age" ) Integer age) { return "创建student&#xff1a;姓名&#xff1a;" &#43; name &#43; ",年龄&#xff1a;" &#43; age; } &#64;PutMapping ( "/student/{id}/{age}" ) public String modifyStudent ( &#64;PathVariable Integer id, &#64;PathVariable Integer age) { return "修改student&#xff1a;id&#61;" &#43; "id" &#43; ",age&#61;" &#43; age; } &#64;DeleteMapping ( "/student/{id}" ) public String removeStudentById ( &#64;PathVariable Integer id) { return "删除student&#xff1a;id&#61;" &#43; id; } }
1.3.4 查询测试
1.3.5 添加测试
1.3.6 修改测试
1.3.7 删除测试
1.4 RESTful 优点 1.轻量&#xff0c;直接基于 http&#xff0c;不再需要任何别的诸如消息协议&#xff1a;get/post/put/delete 为 CRUD 操作 2.面向资源&#xff0c;一目了然&#xff0c;具有自解释性。 3.数据描述简单&#xff0c;一般以 xml&#xff0c;json 做数据交换。 4.无状态&#xff0c;在调用一个接口&#xff08;访问、操作资源&#xff09;的时候&#xff0c;可以不用考虑上下文&#xff0c;不用考虑当前状态&#xff0c;极大的降低了复杂度。 5. 简单、低耦合
1.5 RESTful 总结 1.5.1 请求路径冲突 &#64;GetMapping ( value &#61; "/student/{studentId}/{classname}" ) &#64;GetMapping ( value &#61; "/student/{studentId}/{schoolname}" )
这样的路径访问会失败&#xff0c; 路径有冲突。
解决&#xff1a;设计路径&#xff0c;必须唯一&#xff0c; 路径 uri 和 请求方式必须唯一。
1.5.2 注意事项 1.增 post 请求、删 delete 请求、改 put 请求、查 get 请求
2.请求路径不要出现动词 例如&#xff1a;查询订单接口 /boot/order/1021/1&#xff08;推荐&#xff09; /boot/queryOrder/1021/1&#xff08;不推荐&#xff09;
3.分页、排序等操作&#xff0c;不需要使用斜杠传参数 例如&#xff1a;订单列表接口 /boot/orders?page&#61;1&sort&#61;desc 一般传的参数不是数据库表的字段&#xff0c;可以不采用斜杠