SpringBoot @RequestParam、@PathVaribale、@RequestBody实战案例

网友投稿 348 2022-11-13


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(chttp://all);

return stuResponse;

}

@GetMapping("/hello/{id}")

public Integer getUrl(@PathVariable(value = "id") Integer id) {

return id;

}

}

效果

body

parme key value

pathvar

/{id}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SpringBoot整合Redis的步骤
下一篇:Java8如何使用Lambda表达式简化代码详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~