Error-Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'bbsService' available 해결방법
CODEDRAGON ㆍDevelopment/Spring
반응형
오류메시지
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'bbsService' available
<context:component-scan> 태그를 통해 스캔하는 경우 getBean()의 인자를 변경하여 호출해 주어야 합니다.
해결방법
Spring 설정 XML에 등록한 BeanID와 Bean의 클래스 타입을 인자로 하는 getBean()함수를
Bean 클래스 타입만 인자로 받는 함수로 변경해서 Lookup 합니다.
HelloService bbsService = ctx.getBean("helloService", HelloService.class); |
HelloService bbsService = ctx.getBean(HelloService.class); |
'Development > Spring' 카테고리의 다른 글
MyBatis3의 주요 컴포넌트 역할 (0) | 2019.05.09 |
---|---|
AOP 용어 (0) | 2019.04.30 |
핵심기능과 부가기능 (Core Concerns & Cross-cutting Concerns) (0) | 2019.04.17 |
MyBatipse 설치 하기 - MyBatis plug-in (0) | 2019.04.17 |
MyBatis(마이바티스) (0) | 2019.04.11 |