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

来源:互联网 发布:淘宝网厨房小东西 编辑:程序博客网 时间:2024/05/29 04:24

配置文件中加入

//自动提交事物<property name="hibernate.connection.autocommit">true</property>//事物提交之后关闭数据库的连接 <property name="hibernate.connection.release_mode">after_transaction</property>