本文介绍了执行后groovy.sql.Sql.firstRow会关闭连接吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在MyService中,我有以下内容:

  

如果需要, Sql 中的每个方法都会创建并释放资源。 / b>

如果您创建 Sql 一个 DataSource ,它会每次都得到一个新的连接,并在操作结束时关闭它。


In MyService I have the following:

import groovy.sql.Sql

class MyService {
  Sql groovySql

  def serviceMethod(){
    groovySql.firstRow("some query.....")
  }
}

In resources.groovy groovySql inject as follows:

groovySql(groovy.sql.Sql, ref('dataSource'))

This is a Grails 2.4.5 application. Now, the question is when serviceMethod is called, is the connection closed automatically?

解决方案

Every method in Sql creates and releases resources if necessary.

If you create a Sql with a DataSource, it will get a new connection every time, and close it at the end of the operation.

这篇关于执行后groovy.sql.Sql.firstRow会关闭连接吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 14:53