gpt4 book ai didi

grails - 在 1.3.7 中无法将任何用 @Transactional 注释的服务注入(inject)到任何 Controller 中

转载 作者:行者123 更新时间:2023-12-02 05:06:39 25 4
gpt4 key购买 nike

我遇到了一个奇怪的问题,关于 grails 将任何用 @Transactional 注释的服务注入(inject)到 1.3.7 中的任何 Controller 中。

SyncSpInfoService:

 package test
import org.springframework.transaction.annotation.*

class SyncSpInfoService {
static transactional = false
@Transactional
def syncSpInfoData(def dataSource)throws RuntimeException{
...
}

Controller :

 package test
class SyncSpInfoController {
def syncSpInfoService
def dataSource
def index = {
try{
syncSpInfoService.syncSpInfoData(dataSource)
render "Success"
return
}catch(RuntimeException e){
e.printStackTrace()
render "Error:"+e.getMessage()
return
}
}

然后运行controller,如果SyncSpInfoService报错,我修改它,再运行,有如下错误:错误:无法将 test.SyncSpInfoService 转换为 test.SyncSpInfoService

我不知道为什么?请帮助我,非常感谢...

最佳答案

尝试删除服务方法参数中的“def”:

    def syncSpInfoData(datasource) {} // and you don't need the throws

关于grails - 在 1.3.7 中无法将任何用 @Transactional 注释的服务注入(inject)到任何 Controller 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10614195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com