🐶 에러
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>'개발 > Spring' 카테고리의 다른 글
| (Spring) Spotify API 설정 (searchTracks) (1) | 2025.04.18 |
|---|---|
| (Spring Security) Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN' (1) | 2024.11.24 |