study/spring
-
Field Injection is not recommendedstudy/spring 2019. 12. 30. 22:45
@Autowired를 Bean 주입을 받다 보면 warning이 뜬다. @Autowired를 사용한 Bean 주입 방법은 비권장방식인 Field Inejction 방법을 사용 해서 Bean을 주입했기 때문이다. Dependency Injection 관련된 Spring 공식 문서 에서는 두 개의 권장된 Bean 주입 방식을 알려준다. Constructor-based dependency inejction (생성자 기반 주입) Setter-based dependency injection (Setter 기반 주입) Constructor-based dependency inejction 생성자 기반 주입 방식 생성자 기반 주입 방식에서는 클래스 생성자에 @Autowired를 달아 놓고, 생성자의 매개변수로 의존성을..