Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

RequestMapping - API 본문

인프런/[인프런] 스프링 MVC 1

RequestMapping - API

Seung__ 2021. 9. 14. 19:53

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


 

GitHub - bsh6463/MVC2

Contribute to bsh6463/MVC2 development by creating an account on GitHub.

github.com

 

'인프런 > [인프런] 스프링 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