当我第一次从控制器调用服务类时,我能够访问数据源,但在第二次调用中,数据源为空。请您分享如何解决该问题的想法。我把示例代码放在这里
//controller class
class atulController
{
def databaseService
def callinsert(){
databaseService.insert();
}
}
//Service class
class databaseService {
def dataSource
def insert(){
def sql = new Sql(dataSource);
}
}