如果使用new QueryRunner (jdbc.getDataSource).update(con,sql)的方式执行sql
则 由dbutils自动维护连接
如果采用如下方式 需要我们手动释放连接
new QueryRunner().update(con,sql)
con.close()