是否可以在grails引導類中異步使用服務? 我嘗試做以下Grails的-2.0.4和Grails的執行人 - 插件,但只出現第一個日誌消息:grails異步引導
class BootStrap {
def myService
def init = { servletContext ->
log.info("Bootstrapping")
runAsync {
log.info("Doing myService async ")
myService.doSomething()
}
}
沒有錯誤消息,只是沒有從第二日誌輸出聲明。 非常感謝!
如何啓動一個線程?我記得我在一個項目中做過這個,但我不記得我是否使用了類服務? –
是啊!好主意:我試過如下:高清TH = {Thread.start \t \t log.info( 「Autowarming印痕異步」) \t \t myService.doSomething() \t \t} –
它的工作原理或不? –