在我的服务中尝试以下操作时遇到问题:
class SendingMailService {
def dataSource // the Spring-Bean "dataSource" is auto-injected
def sendXLSMail() {
def db = new Sql(dataSource)
//additional code such as query, execution follows
}
}
当我执行此代码时,我收到错误:“必须指定非空连接”。根据我的阅读,我相信上面的代码应该可以工作(这不是单元测试)......所以很明显我错过了关于 Grails 服务的一些东西?
感谢您在这里的任何帮助,