본문 바로가기
개발/Spring

(WARN) Invocation of destroy method 'close' failed on bean with name 'sqlSession'

by gomdeng 2024. 11. 24.

🐶 에러

WARN : org.springframework.beans.factory.support.DisposableBeanAdapter -
Invocation of destroy method 'close' failed on bean with name 'sqlSession':
java.lang.UnsupportedOperationException:
Manual close is not allowed over a Spring managed SqlSession

 

🐶 조치

'SqlSession' bean에 destroy-method="clearCache"를 추가해준다.

<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="clearCache">
  <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory" />		
</bean>