봄 - @RequestParam
3928 단어 springprogramminghttpjava
id라는 쿼리 매개변수를 사용하는 엔드포인트/api/product가 있다고 가정해 보겠습니다.
@GetMapping("/api/product")
@ResponseBody
public String getProduct(@RequestParam String id) {
return "ID: " + id;
}
간단한 GET 요청은 getProduct를 호출합니다.
http://localhost:8080/api/product?id=123
----
ID: 123
앞의 예에서 변수 이름과 인수 이름이 모두 동일합니다. 그러나 그들이 다르기를 바랄 때가 있습니다.
이 경우 이름 속성을 사용합니다.
@PostMapping("/api/product")
@ResponseBody
public String addProduct(@RequestParam(name = "id") String pId,
@RequestParam String name) {
return "ID: " + pId + " Name: " + name;
}
@RequestParam(value = "id") 또는 @RequestParam("id")만 수행할 수도 있습니다.
또한 @RequestParam을 필수 속성으로 선택적으로 구성할 수 있습니다.
@GetMapping("/api/product")
@ResponseBody
public String getProduct(@RequestParam(required = false) String id) {
return "ID: " + id;
}
마지막으로 Map을 사용하여 이름이나 개수를 정의하지 않고 여러 매개변수를 가질 수도 있습니다.
@PostMapping("/api/product")
@ResponseBody
public String updateProduct(@RequestParam Map<String,String> allParams) {
return "Parameters are " + allParams.entrySet();
}
Reference
이 문제에 관하여(봄 - @RequestParam), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/yigi/spring-requestparam-4gg9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)