@RequiredArgsConstrucot1 @RequiredArgsConstructor 를 사용할때 주의점 @RequiredArgsConstructor 를 사용할때 주의점 의존성주입의 종류로는 Constructor(생성자),Setter,Field 타입이 있습니다. Constructor(생성자)를 사용한 의존성 주입 public class Example{ private final FirstService firstService; private final SecondService secondService; @Autowired public Example(FirstService firstService, SecondService secondService) { this.firstService= firstService; this.secondService= secondService; } } Setter를 사용한 의존성 주입 .. 2023. 3. 18. 이전 1 다음