[์น๊ฐ๋ฐ์ ๋ด, Spring] 4์ฃผ์ฐจ ๊ฐ๋ฐ์ผ์ง(1) - ๋ค์ด๋ฒ ์ผํ API ์ด์ฉํ๊ธฐ ์ด์ ํฌ์คํ ์์ ๋ฅผ ๋ค์๊ณผ ๊ฐ์ด ์ค๊ณํ๋ค. ๊ธฐ๋ฅ Method URL return ํค์๋๋ก ์ํ ๊ฒ์ํ๊ณ ๊ทธ ๊ฒฐ๊ณผ๋ฅผ ๋ชฉ๋ก์ผ๋ก ๋ณด์ฌ์ฃผ๊ธฐ GET /api/search?query=๊ฒ์์ด List ๊ด์ฌ ์ํ ๋ฑ๋กํ๊ธฐ POST /api/products Product ๊ด์ฌ ์ํ ์กฐํํ๊ธฐ GET /api/products List ๊ด์ฌ ์ํ์ ๊ด์ฌ ๊ฐ๊ฒฉ ๋ฑ๋กํ๊ณ , ์ํ ๊ฐ๊ฒฉ์ด ๋ ๋ฎ์ ๊ฒฝ์ฐ ํ์ํ๊ธฐ PUT /api/products/{id} id 1. Controller ProductRestController: ๊ด์ฌ ์ํ ๊ด๋ จ ์ปจํธ๋กค๋ฌ SearchRequestContorller: ๊ฒ์ ๊ด๋ จ ์ปจํธ๋กค๋ฌ 2. Service ProductServ..