Recommendations for cron-like scheduling in Grails: run method once every hour
- by knorv
Suppose I want to run the following method foo() once every hour in Grails:
class FooController {
public static void foo() {
// stuff that needs to be done once every hour (at *:00)
}
}
What is the easiest/recommended way to set up such cron-like scheduling in Grails?