时间:2021-05-20
实例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内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本篇文章将介绍几种SpringBoot中常用注解其中,各注解的作用为:@PathVaribale获取url中的数据@RequestParam获取请求参数的值@G
1.介绍几种如何处理url中的参数的注解@PathVaribale获取url中的数据@RequestParam获取请求参数的值@GetMapping组合注解,是
本文主要研究的是关于@RequestBody的正确使用方法的相关内容,具体如下。最近在接收一个要离职同事的工作,接手的项目是用SpringBoot搭建的,其中看
1@RequestBody作用:@RequestBody注解用于读取http请求的内容(字符串),通过springmvc提供的HttpMessageConver
SpringMvc中@RequestParam注解使用建议使用包装类型来代替基本数据类型publicStringform2(@RequestParam(name