是否可以在 grails 引导类中异步使用服务?我试图在 grails-2.0.4 和 grails-executor-plugin 中执行以下操作,但只出现第一条日志消息:
class BootStrap {
def myService
def init = { servletContext ->
log.info("Bootstrapping")
runAsync {
log.info("Doing myService async ")
myService.doSomething()
}
}
没有错误消息,只是第二条日志语句没有输出。提前非常感谢!