본문 바로가기
개발 환경 및 오류

Could not autowire field: private org.mybatis.spring.SqlSessionTemplate

by 노랑파랑 2017. 1. 18.
반응형

 

 

에러

 

Error creating bean with name '***Controller': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named '***Service' is defined

...

Could not autowire field: private org.mybatis.spring.SqlSessionTemplate

 

 
해결법
 
1. 어노테이션을 설정과 이름이 다른지 확인!
 
@Repository 또는 @Service
 
 
2. Could not autowire field: 라면 대신 context-datasource.xml 파일 자체가 configLocation에(web.xml) 지정되어 있어야 하는데, 이 부분 확인!

 

반응형

'개발 환경 및 오류' 카테고리의 다른 글

Gradle  (0) 2017.01.20
Maven Oracle jdbc 설치  (0) 2017.01.19
MyBatis 설치 및 연동  (1) 2017.01.17
Maven  (0) 2017.01.12
AWS RDS DB인스턴스에 JDBC 연결  (0) 2017.01.09