핵심기술1 SpringFrameWork CoreTechnition_section1_2부 2) @Autowired Autowired : 필요한 의존 객체 '타입'에 해당하는 빈을 찾아 주입하는 것입니다. - 기본적으로 (required=True) 이 들어가 있음. 사용 위치 가정: bookService 클래스와 bookRepository 라는 두개의 클래스가 있고 bookService 클래스 안에 bookRepository 주입 하려 합니다. 생성자 bookclass 에 @Repository 선언. # Service Class. @Autowired() // 의존성 주입 @Inject BookRepository bookRepository; public BookService(BookRepository bookRepository) { this.bookRepository = bookRepositor.. Spring/Spring_CoreTechnologies 2020. 11. 17. 이전 1 다음