Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.3.1
-
Fix Version/s: 0.5-RC1
-
Component/s: None
-
Labels:None
Description
I had to make a couple additions to get Eclipse Groovy plugin to stop complaining, anyhow. Sorry, no diff/patch:
class @artifact.name@Job implements org.quartz.Job {
def timeout = 1000
def void execute(org.quartz.JobExecutionContext context) {
// execute task
}
}
Grails also doesn't seem to be injecting Services (per the sample in the doco) - I don't even know where to begin looking for that one.
Issue Links
| This issue is related to: | ||||
| GRAILS-862 | Externalize Quartz scheduler plugin |
|
|
|
Here is the page with the sample I was referring to: http://grails.codehaus.org/Job+Scheduling+%28Quartz%29