@Autowired
[Spring] 테스트를 위한 애플리케이션 컨텍스트 관리
https://withseungryu.tistory.com/84?category=880574 Java Build Path -> classpath를 확인해준 후 아래와 같이 경로 수정 @ContextConfiguration(locations="classpath:test-applicationContext.xml") 🧐 @Autowired 란? 스프링의 DI에 사용되는 특별한 애노테이션 Autowired가 붙은 인스턴스 변수가 있으면, 테스트 컨텍스트 프레임워크는 변수 타입과 일치하는 빈을 찾는다. 타입이 일치하는 빈이 있으면 인스턴스 변수에 주입해준다. 이때 @Autowired는 applicationContext.xml에 붙은 것이 아닌, AppicationContext에 붙여있는데 애플리케이션 컨텍스트가 ..