annotation1 Spring @Autowired 사용시 주의점 @Autowired 사용시 동일한 타입의 Bean 객체를 2개 이상일때 Injection of autowired dependencies failed 에러 발생하게 됩니다. 원인 : expected single matching bean but found 2: 해결방법 : @Autowired 사용시에는 동일한 타입을 Bean 객체를 2개사용하지 말것. (@Autowired 로 명시해준 클래스의 동일한 클래스를 XML 설정파일에 bean 으로 설정하지 말것.) 만약, 동일한 클래스를 2개 이상 설정해줘야 한다면, 예) bean id가 main 일 경우 @Qualifier("main") 를 함께 사용하여 이름을 지정하거나, @Resource(name = "main") 를 이용하여 이름을 지정한다. 참고 URL .. 2019. 3. 11. 이전 1 다음 728x90