@Primary: 1개의 글
[Spring] @Autowired의 다양한 사용 방법 - required, Primary, Qualifier
[Spring] @Autowired의 다양한 사용 방법 - required, Primary, Qualifier 1. 의존객체 타입의 빈이 없는 경우 다음과 같이 BookService 클래스와 BookRepository 인터페이스가 있다. import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class BookService { BookRepository bookRepository; @Autowired public BookService(BookRepository bookRepository) { this.bookRepository = boo..
Spring Framework/Spring Core
2021. 4. 21. 01:44