[Error] #2 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'xxxController': Unsatisfied dependency expressed through field 'xxxService';
2019. 9. 21. 17:19ㆍGo to 코딩천재/Spring
원인
- 컨트롤러, 서비스 등의 빈 생성 문제
- 나의 경우 : @Service 클래스에 sqlSession 객체를 선언 후, @Autowired를 지정했는데
sqlSession 설정을 하지 않음..
해결방법
- 나의 경우 : root-context.xml에 sqlSession 객체 생성
'Go to 코딩천재 > Spring' 카테고리의 다른 글
[MVC프로젝트] #3. Mybatis와 MS-SQL 이용하기 Tips (0) | 2019.09.22 |
---|---|
[MVC프로젝트] #2 MyBatis 연동하기 (ORACLE, MS-SQL) (0) | 2019.09.21 |
[MVC프로젝트] #1 Spring Legacy Project 생성 (0) | 2019.09.21 |
[Error] #1 No mapping found for HTTP request with URI (0) | 2019.09.21 |