스크린샷 및 설명 - perfo24/helloProduct GitHub Wiki
1. Postman을 활용한 API 요청 및 응답 메시지
GET, 모든 상품들 Read
GET, 특정 id 상품 Read
POST, 새 상품 Create
https://github.com/perfo24/helloProduct/blob/master/helloProduct/img/2.%20create%20new%20product.PNG
GET, 특정 category 상품들 Read
PUT, 특정 id 상품 Update
DELETE, 특정 id 상품 Delete
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