springboot-Http协议接口开发
Posted 小e老师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-Http协议接口开发相关的知识,希望对你有一定的参考价值。
- @RestController and @RequestMapping是springMVC的注解,不是springboot特有的
- @RestController = @Controller+@ResponseBody
- @SpringBootApplication = @Configuration+@EnableAutoConfiguration+@ComponentScan?
- @GetMapping(path = "/{city_id}/{user_id}")
@PathVariable("city_id") String cityId,@PathVariable("user_id") String userId - @GetMapping(value="/v1/page_user2")
@RequestParam(defaultValue="0",name="page",required = true) int from, int size - @RequestMapping("/v1/save_user")
@RequestBody User user - @PostMapping("/v1/login")
- @PutMapping("/v1/put")
- @DeleteMapping("/v1/del")
代码地址 https://github.com/mambamentality8/springboot
以上是关于springboot-Http协议接口开发的主要内容,如果未能解决你的问题,请参考以下文章