진이의 Developer Story
Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate' 본문
Java/Spring
Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate'
JIN3260 2016. 1. 21. 16:37마이바티스 사용중 다음과 같은 에러가 발생하였을 시...
WARN : org.springframework.beans.factory.support.DisposableBeanAdapter -
Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate':
java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession
스프링 설정 중 매퍼 빈 정의 부분을 destroy-method="clearCache" 를 추가한다.
<bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="clearCache">
<constructor-arg ref="sqlSessionFactory"/>
</bean>
'Java > Spring' 카테고리의 다른 글
리그오브레전드 API 사용하기 (1) (7) | 2016.02.04 |
---|---|
한글깨짐 처리 방법 (0) | 2016.01.25 |
JUnit MyBatis 테스트 (2) | 2016.01.20 |
(5) Spring+MyBatis 게시판 만들기 - VIEW 작성 (17) | 2016.01.20 |
(4) Spring+MyBatis 게시판 만들기 - 클래스 작성 (12) | 2016.01.20 |
Comments