异常处理Manual close is not allowed over a Spring managed SqlSession

来源:互联网 发布:电脑txt小说编辑软件 编辑:程序博客网 时间:2024/04/30 13:40

在SpringMVC 配合Mybatis的使用中出现这样一个警告

[org.springframework.beans.factory.support.DisposableBeanAdapter (line-337)] - Invocation of destroy method ‘close’ failed on bean with name ‘sqlSession’: java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession

解决办法:在Spring MVC的配置文件中加入

    <bean id="writableSQLSession" class="org.mybatis.spring.SqlSessionTemplate" scope="prototype">        <constructor-arg index="0" ref="sqlSessionFactory"/>    </bean>

重点是加上scope

0 0
原创粉丝点击