component-scan1 Could not autowire. No beans of '*' type found. 오류 내용 Controller 작성 중 @Autowired Annotation을 통한 Dependency Injection 과정 중 MemberService type의 Bean을 찾을 수 없다는 오류 발생 원인 MemberService라는 이름의 Bean이 등록되지 않은 것인데 나의 경우에는 component-scan element를 작성하지 않아 Bean을 인식하지 못함 해결 방법 Bean으로 등록하려는 Component가 있는 패키지 명을 application-context.xml에 component-scan으로 선언 해준다 2021. 12. 7. 이전 1 다음