久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

SpringBoot @RequestParam、@PathVaribale、@RequestBody實戰案例

瀏覽:135日期:2023-04-09 10:05:47

實例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

SpringBoot @RequestParam、@PathVaribale、@RequestBody實戰案例

parme key value

SpringBoot @RequestParam、@PathVaribale、@RequestBody實戰案例

pathvar/{id}

SpringBoot @RequestParam、@PathVaribale、@RequestBody實戰案例

到此這篇關于SpringBoot @RequestParam、@PathVaribale、@RequestBody實戰案例的文章就介紹到這了,更多相關SpringBoot @RequestParam、@PathVaribale、@RequestBody內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 紫阳县| 小金县| 阿图什市| 抚顺市| 南郑县| 永川市| 刚察县| 化隆| 龙门县| 镇江市| 肥乡县| 克拉玛依市| 元谋县| 北辰区| 丰顺县| 岳西县| 常熟市| 岑巩县| 吕梁市| 阜宁县| 吐鲁番市| 乌海市| 铜川市| 西贡区| 洮南市| 武冈市| 白水县| 洛浦县| 东台市| 中牟县| 建德市| 同德县| 垣曲县| 丁青县| 汝城县| 黑龙江省| 陈巴尔虎旗| 资溪县| 南郑县| 黄大仙区| 安多县|