• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

springboot 搞代码 4年前 (2022-01-09) 16次浏览 已收录 0个评论

实例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(@PathVa<span>本文来源gaodai#ma#com搞*代#码9网#</span>riable(value = "id") Integer id) {
    return id;
  }
}

效果

body

parme key value

到此这篇关于SpringBoot @RequestParam、@PathVaribale、@RequestBody实战案例的文章就介绍到这了,更多相关SpringBoot @RequestParam、@PathVaribale、@RequestBody内容请搜索搞代码以前的文章或继续浏览下面的相关文章希望大家以后多多支持搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:SpringBoot @RequestParam、@PathVaribale、@RequestBody实战案例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址