SpringBoot @RequestParam、@PathVaribale、@RequestBody实战案例
实例User
package com.iflytek.odeon.shipper.model.rx;import io.swagger.annotations.ApiModelProperty;public class Student { @ApiModelProperty(value = '名称', example = 'zhangsan', required = true) private String name; private Integer call; public Student() { } public Student(String name, Integer call) { this.name = name; this.call = call; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getCall() { return call; } public void setCall(Integer call) { this.call = call; } @Override public String toString() { return 'Student{' +'name=’' + name + ’’’ +', call=' + call +’}’; }}
实例Controller
package com.iflytek.odeon.shipper.controller;import com.iflytek.odeon.shipper.model.rx.Student;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.*;/** * 测试注解及调试功能API */@RestController@RequestMapping('/v1')public class SampleController { @PostMapping('/hi') public Student hi(@RequestBody() Student student) { return new Student(student.getName(), student.getCall()); } @PostMapping('/hello') public Student hello(@RequestParam(value = 'name') String name, @RequestParam(value = 'call') Integer call) { Student stuResponse = new Student(); stuResponse.setName(name + 'call'); stuResponse.setCall(call); return stuResponse; } @GetMapping('/hello/{id}') public Integer getUrl(@PathVariable(value = 'id') Integer id) { return id; }}
效果
body

parme key value

pathvar/{id}

到此这篇关于SpringBoot @RequestParam、@PathVaribale、@RequestBody实战案例的文章就介绍到这了,更多相关SpringBoot @RequestParam、@PathVaribale、@RequestBody内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!
相关文章:
1. ASP.NET MVC使用typeahead.js实现输入智能提示功能2. HTML5视频播放标签video和音频播放标签audio标签的正确用法3. JavaScript伪数组和数组的使用与区别4. springboot-2.3.x最新版源码阅读环境搭建(基于gradle构建)5. 使用IDEA编写jsp时EL表达式不起作用的问题及解决方法6. vue实现用户长时间不操作自动退出登录功能的实现代码7. IntelliJ IDEA : .java文件左下角显示"J"图标的问题8. 解决Python 进程池Pool中一些坑9. 解决vue scoped scss 无效的问题10. jsp中sitemesh修改tagRule技术分享

网公网安备