인프런워밍업클럽 썸네일형 리스트형 [인프런 워밍업 클럽] BE 6번째 과제 - Controller - Service - Repository로 분리하기 4번째 과제에서 만들었던 API를 Controller - Service - Reposiroty로 분리해보는 과제! 코드를 어떻게 작성했었는지는 아래의 링크에서 확인할 수 있다. 과제 4 : https://yestruly.tistory.com/89 🔑문제 1 🔑코드 Controller public class FruitController { private final FruitService fruitService; public FruitController(FruitService fruitService) { this.fruitService = fruitService; } @PostMapping("") public void registerFruit(@RequestBody FruitRequest request) {.. 더보기 이전 1 다음