【JavaWeb】SpringMvc 事物自动提交和自动关闭连接

配置文件中加入

//自动提交事物
<property name="hibernate.connection.autocommit">true</property>
//事物提交之后关闭数据库的连接 
<property name="hibernate.connection.release_mode">after_transaction</property> 
原文地址:https://www.cnblogs.com/cnsec/p/13286771.html