Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- springdatajpa
- 알고리즘
- 스프링
- 스프링 핵심 원리
- Thymeleaf
- kotlin
- 김영한
- jpa
- Servlet
- java
- pointcut
- JDBC
- QueryDSL
- 인프런
- AOP
- db
- transaction
- SpringBoot
- 스프링 핵심 기능
- 그리디
- Proxy
- Android
- spring
- Greedy
- Exception
- 자바
- JPQL
- http
- Spring Boot
Archives
- Today
- Total
개발자되기 프로젝트
RequestMapping - API 본문
1. 회원 관리 API
- 회원 목록 조회: GET /users
- 회원 등록: POST /users
- 회원 조회: GET /users/{userId}
- 회원 수정: PATCH /users/{userId}
- 회원 삭제: DELETE /users/{userId}
2. Controller
@RestController
public class MappingClassController {
@GetMapping("/mapping/users/")
public String user(){
return "get users";
}
@PostMapping("/mapping/users")
public String addUser(){
return "post user";
}
@GetMapping("/mapping/users/{userId}")
public String findUser(@PathVariable("userId") String userId){
return "get userId = " + userId;
}
@PatchMapping("/mapping/users/{userId}")
public String updateUser(@PathVariable("userId") String userId){
return" update userId = " + userId;
}
@DeleteMapping("/mapping/users/{userId}")
public String deleteUser(@PathVariable("userId") String userId){
return" update userId = " + userId;
}
}
- 음 그런데 /mapping/users가 반복된다.
- @RequestMapping에 공통부분은 넣어주면된다.
@RestController
@RequestMapping("/mapping/users")
public class MappingClassController {
@GetMapping
public String user(){
return "get users";
}
@PostMapping
public String addUser(){
return "post user";
}
@GetMapping("/{userId}")
public String findUser(@PathVariable("userId") String userId){
return "get userId = " + userId;
}
@PatchMapping("/{userId}")
public String updateUser(@PathVariable("userId") String userId){
return" update userId = " + userId;
}
@DeleteMapping("/{userId}")
public String deleteUser(@PathVariable("userId") String userId){
return" update userId = " + userId;
}
}
3. GitHub : 210914 RequestMapping-API
'인프런 > [인프런] 스프링 MVC 1' 카테고리의 다른 글
HTTP 요청 파라미터 - 쿼리 파라미터, HTML, Form (0) | 2021.09.14 |
---|---|
HTTP 요청 - Header 조회 (0) | 2021.09.14 |
Request Mapping (0) | 2021.09.14 |
Logging기능 (0) | 2021.09.13 |
프로젝트 생성 (0) | 2021.09.13 |
Comments