grails-plugin

Grails quartz->thread

This is my Trigger that calls a matchService... class TestJob { def matchService static triggers = { cron name: 'firstThread', cronExpression: "0 0/1 12-13 ? * THU" } def group = "threadGroup" def execute() { matchService.playMatch() println "run thread: " + String.format('%tH:%<tM:%<tS.%<tL',System.current...