Restful是一种软件架构风格、设计风格,而不是标准,只是提供了一组设计原则和约束条件。主要用于客户端和服务 器交互类的软件,基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存机制等。
例如:
Restful风格的请求是使用“url+请求方式”表示一次请求目的的,HTTP 协议里面四个表示操作方式的动词如下:
GET:用于获取资源
POST:用于新建资源
PUT:用于更新资源
DELETE:用于删除资源
上述url地址/user/1中的1就是要获得的请求参数,在SpringMVC中可以使用占位符进行参数绑定。
地址/user/1可以写成 /user/{id},占位符{id}对应的就是1的值。在业务方法中我们可以使用@PathVariable注解进行占位符的匹配获取工作。
例如:
/user/1 GET : 得到 id = 1 的 user
/user/1 DELETE: 删除 id = 1 的 user
/user/1 PUT: 更新 id = 1 的 user
/user POST: 新增 user
下面针对 GET 来一次测试:
package com.bihu.Controller; 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.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class TestController { //访问http://localhost:8080/ok/张三 那么 其中张三就会注入到 占位符 name 里面 然后下面的形参name就会张三了 //下面的name是占位符 @RequestMapping("/ok/{name}") @ResponseBody//直接响应 不进行跳转 //下面value代表占位符的值注入到此,required就是参数允许为空 public void post(@PathVariable(value = "name",required = false) String name){ System.out.println(name); } }
这个是风格而已 ;了解即可,后面待补充 其他方式我也是不会的 因为没怎么用 几乎不用