SpringBoot@RequestParam,@PathVaribale,@RequestBody 실전 사례
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 +
'}';
}
}
인 스 턴 스 컨트롤 러
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 내용 은 저희 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Java・SpringBoot・Thymeleaf】 에러 메세지를 구현(SpringBoot 어플리케이션 실천편 3)로그인하여 사용자 목록을 표시하는 응용 프로그램을 만들고, Spring에서의 개발에 대해 공부하겠습니다 🌟 마지막 데이터 바인딩에 계속 바인딩 실패 시 오류 메시지를 구현합니다. 마지막 기사🌟 src/main/res...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.