Spring
스프링 12강. Restful API 주소 설계 규칙(2)
(3) Update - UPDATE - Put // 수정해주세요 Update - UPDATE // 수정할 데이터 필요 -> body 있음 // UPDATE post SET title = ?, content = ? WHERE id = ? // 협업을 하기 위해 API 문서 필요 @PutMapping("/post/{id}") // WHERE절의 조건은 주소에, 변경할 데이터는 body에 (규칙) public String test3(String title, String content, @PathVariable int id) { // title, content (primary key : id) 수정 return "수정해주세요 : title : " + title + ", content : " + content +..
2022. 2. 28. 16:48