진이의 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>

Comments