Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to setup a cron job in my Grails web application using the Quartz plugin. I am currently simply trying to get a test job to execute once every second using the following code:

class TestJob {
    private int counter = 0
    static triggers = {
        simple repeatInterval: 1000
    }

    def execute() {
        // execute job
        counter += 1
        System.out.println("Testing the cron " + counter)
    }
}

However, when I run the application I only see the initial output of the first execute() call twice: once immediately before I am alerted that the server is running, and once immediately after.

| Loading Grails 2.1.0
| Configuring classpath.
| Environment set to development.....
| Packaging Grails application.....
| Compiling 1 source files.....
| Running Grails application
Testing the cron 1
| Server running. Browse to http://localhost:8080/QuartzTest
Testing the cron 1

Does anyone know why my Quartz job might not be firing correctly? I have tried using a cron instead of simple as well as using varying parameters, time intervals, etc. Nothing has made a difference.

Thanks

share|improve this question

3 Answers

up vote 6 down vote accepted

I think I had similar issues. You are not allowed to use System.out.println from within a quartz-job. Try to use log.error.

share|improve this answer
That's exactly what it was, thank you! – Sum Deos Jul 13 '12 at 20:01
Hmm... I had exactly the same behaviour, but changing to log.error made no difference. Instead, changing "counter" to be static fixed the problem (even when using println), though I don't understand why that would affect job triggering. – John Price Jul 24 '12 at 18:24
Worked for me. By the way why such a behavior? – MeIr Sep 3 '12 at 0:10

Simple triggers have a repeatCount field. Set it to -1 for indefinite executions:

simple name: "testName", repeatInterval: 1000, repeatCount: -1
share|improve this answer
Tried it, doesn't help. – MeIr Sep 3 '12 at 0:09

In the documentation all examples have a name parameter in the triggers block:

static triggers = {
      simple name: "testName", repeatInterval: 1000      
}

I'd give that a shot first, even though the docs also say that a default value will be used if it's not given.

share|improve this answer
I actually originally had the name parameter, as well as the startDelay parameter with the trigger as well, it still only seemed to execute twice. – Sum Deos Jul 13 '12 at 18:30
In the docs I just found the line that "By default, jobs will not be executed when running under the test environment." I'm not sure what that means because clearly it runs twice. – Michael Dillon Jul 13 '12 at 18:36
Yes, I saw that as well. As my output shows though, my environment should be set to development, so that shouldn't be causing the issue. – Sum Deos Jul 13 '12 at 18:40
Actually, looks like it is only getting executed once, not twice like I thought. See updated code to see: I added a counter that doesn't increment – Sum Deos Jul 13 '12 at 19:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.