스크린샷 및 설명 - perfo24/helloProduct GitHub Wiki

1. Postman을 활용한 API 요청 및 응답 메시지

GET, 모든 상품들 Read

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/0.%20Get%20full%20list%20of%20products.PNG

GET, 특정 id 상품 Read

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/1.%20Get%20details%20of%20products%20with%20id%3DN.PNG

POST, 새 상품 Create

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/2.%20create%20new%20product.PNG

GET, 특정 category 상품들 Read

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/3.%20Fetch%20all%20products%20of%20a%20category.PNG

PUT, 특정 id 상품 Update

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/4.%20modify%20values%20of%20product%20with%20id%3DN.PNG

DELETE, 특정 id 상품 Delete

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/5.%20delete%20product%20with%20id%3DN.PNG

2. Spring Boot actuator를 활용한 Products REST API에 대한 URL Mapping 정보 확인

post/ create product

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/6.%20post(Create).PNG

get/ get all products

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/7.%20getAll.PNG

get/ get by id

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/8.%20getById.PNG

get/ get by category

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/9.%20findByCategory.PNG

put/ update product

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/10.%20put(Update).PNG

delete/ delete product

https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/11.%20delete.PNG