What would be the best way to go about doing this?
|
I am using the Quartz plugin in Grails. Is there a configuration that I can use to disable the job, without commenting out or deleting the whole file?
|
I'm planning to have a view that presents a button so that when it is clicked, it will run a Quartz job and the page will finish loading successfully (no need ... |
I'm trying to externalize the QuartzConfig.groovy
I want to be able to set autoStartup to true or false with an external file.
In Config.groovy it is possible to use the grails.config.locations and set ... |
I am trying to use the Quartz plugin for Grails to schedule a job in a web app I am working on. Using the
RAMstore worked fine, but I need the ... |
I'm developing a football manager website, but I can't figure out how to use properly the background-thread plugin and Quartz plugin (there is no much docs).
My problem is..
I have a Controller ... |
Using the grails Quartz plugin (latest stable version, 0.4.2), I have four different Jobs that run fine in my development environment, most of them every minute.
However in the production environment, they ... |
|
I have a requirement to schedule and unschedule a quartz job programmatically. I was able to schedule it using MyJob.schedule(cronExpression). Is there a way to similarly unschedule the job?
I am using ... |
After making a few changes to my already-deployed Grails app, I attempted to recompile the WAR file, and started receiving this error (obviously shorted a bit):
org.springframework.beans.factory.BeanCreationException: Error creating bean ...
|
I've seen a number of postings citing that quartz jobs should not invoke controllers. I'm using Grails to use salesforce.com's new support for the REST API. The nightly job ... |
I am using both multi-tenant-core1.0.3(Single tenant mode) and quartz 0.4.2 plugins in my project. I have created the scheduler(SchedulerFactoryBean) bean in the resources.groovy.
beans = {
...
|
I want to create a Link in my Quartz-Job in grails like this:
createLink(controller:"auto", action:"show", id: auto.id);
But at runtime i'm only getting exceptions like
org.quartz.JobExecutionException: No signature of method: packagename.RefreshStatsJob.createLink() is applicable for ...
|
I would like to stock my logs into files:
Here is how I declare my appenders in Config.groovy:
log4j = {
appenders {
// ...
|
I have the following Quartz job running in my application:
class ScraperJob {
def scraperService
static triggers = {
...
|
I have the following quartz job, set via Quartz-plugin:
class UserMonthlyNotificationJob {
static triggers = {
cron name:'dailyTrigger', cronExpression: " ... "
...
|
I am using the quartz plugin with Grails 1.3.7. I have a need to load balance/cluster a server app that uses quartz jobs. Apparently this is supported but I am finding ... |
I have a multiple Quartz jobs which access the same objects in the database. Some of these jobs run for a long time and seem to conflict with each other. If ... |
We are using Quartz with Grails project. Instead of using plug-in, we are using it directly through Java. Everything works fine when we store/pass normal values in datamap. But, if we store any custom class (bean) in the context/datamap, then we get ClassNotFoundException, even though the bean class is available. One solution which we found out to make it work was ... |