[Error] #2 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'xxxController': Unsatisfied dependency expressed through field 'xxxService';

2019. 9. 21. 17:19Go to 코딩천재/Spring

원인

- 컨트롤러, 서비스 등의 빈 생성 문제

- 나의 경우 : @Service 클래스에 sqlSession 객체를 선언 후, @Autowired를 지정했는데

                 sqlSession 설정을 하지 않음..

 

해결방법

- 나의 경우 : root-context.xml에 sqlSession 객체 생성

- 참고 : https://liante0904.tistory.com/113

 

[Spring] 빈 생성 에러 디버그 Error creating bean with name 'XXX'

스프링은 자바에서 MVC 패턴을 이용해 개발을 할 수 있게 도와준다. 또한 자바의 철학에 맞게 확실한 데이터 형과 문법, 그리고 Bean이라는 개념을 통해 객체 지향 프로그래밍을 사용하고.. 이를 통해 협업을 할..

liante0904.tistory.com