ERROR: org.springframework.web.context.ContextLoader - Context initialization failed
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'DAO': Unsatisfied dependency expressed through field 'session'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.apache.ibatis.session.SqlSession' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.inject.Inject()}
위와 같은 애러 발생 시 root-context.xml 파일에
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="clearCache">
<constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"></constructor-arg>
</bean>
이 내용이 빠져있는지 확인해보도록 합시다!
'Dev > Spring Framework' 카테고리의 다른 글
[Spring] Ajax PUT 메소드 (0) | 2018.07.05 |
---|---|
[퍼옴/메모] 서버 Hot Swapping (0) | 2018.06.19 |
[퍼옴/메모] css,js,img 파일 처리방법들 (0) | 2018.06.19 |
[퍼옴/메모] 정적 리소스(js, css, image..) 접근 (0) | 2018.06.19 |
Spring framework - 인코딩 필터 적용 (0) | 2018.02.09 |
스프링 MVC에서 주로 사용하는 어노테이션 종류 (0) | 2018.02.06 |
스프링(Spring) MVC의 컨트롤러 (0) | 2018.02.06 |
스프링(Spring) 의 주요 특징 (0) | 2018.02.05 |