mrzhqiang / ms079

冒险岛 v079 版本,源码来自网络,本仓库作为研究学习用途。
126 stars 82 forks source link

[BUG] SQL执行异常 #21

Open showmethemoneyOK opened 1 year ago

showmethemoneyOK commented 1 year ago

Describe the bug

public static Connection getConnection() { try { //TODO 每一次获取都会有一个新的数据库连接不会被关闭,只能通过mysql配置超时进行关闭。。。 // ebean中的Connection是有事务的需要进行提交 否则会事务超时 Connection connection = DB.getDefault().dataSource().getConnection(); connection.setAutoCommit(true); return connection; } catch (SQLException e) { LOGGER.error("获取数据库连接出错", e); throw new DatabaseException(e); } }