Tagged Questions
The crontrigger tag has no wiki summary.
3
votes
1answer
1k views
Spring's @Scheduled error : Only one AsyncAnnotationBeanPostProcessor may exist within the context
I am trying Spring 3's @Scheduled annotation . Here is my configuration (app.xml) :
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
3
votes
4answers
802 views
Is there a Javascript cron implementation somewhere that I'm missing?
I'm aware of timing issues in Javascript, how its not exact/off by milliseconds etc, but I need something to at least attempt to do browser-based scheduling.
In terms of features, I'm thinking ...
2
votes
1answer
89 views
Is there something that starts a cron in java?
I have some java written to do a very very simple operation. It needs to happen once every three hours and is not connected to any user action, it's just something that revolves every three hours.
...
2
votes
1answer
91 views
Cron Job For Transfering data from one machine to another
Now here is a situation where i am seeking for an experienced opinion and advice. I have two machines both are running oracle 11G release 2. I have made an application (Spring 2.5) which will fetch ...
2
votes
1answer
393 views
How to get cron expression given job name and group name?
I'm using Quartz Scheduler v.1.8.0.
How do I get the cron expression which was assigned/attached to a Job and scheduled using CronTrigger? I have the job name and group name in this case. Though ...
2
votes
3answers
662 views
Finding Last Fired time using a Cron Expression in Java
Is there a way in Java to find the "Last Fired Time" from a Cron Expression.
E.g. If now = 25-Apr-2010 10pm, cron expression "0 15 10 ? * *" (quartz) should return me 25-Apr-2010 10:15am
Note:
1) I ...
1
vote
2answers
523 views
how to get the next scheduled trigger fire time in Quartz.net
This is my first Quartz.net project. I have done my basic homework and all my cron triggers fire correctly and life is good. However Iam having a hard time finding a property in the api doc. I know ...
1
vote
1answer
194 views
Daily Database backup using Cron Job
Hi i want to take database backup at daily mid night using cron job... and the name of database backup should append with current date... the format of backup file should be mydata_yyyy_mm_dd.sql ...
1
vote
1answer
122 views
how to set a name for a TriggerListener?
i couldn't find the method that sets the triggerListener name.
but i get the Exception:
org.quartz.SchedulerException: TriggerListener 'wavemark.interfaceserver.interfaceengine.action.EngineListener' ...
1
vote
1answer
655 views
Writing a cron Expression in springs
I am using springs task scheduler(ConcurrentTaskScheduler) to schedule my tasks.
I am using the API
public ScheduledFuture schedule(Runnable task,Trigger trigger)
to execute my tasks.The trigger I ...
1
vote
1answer
511 views
quartz scheduler: run on last day of the month
I need to run a job on the last day of every month. i tried the following cron expression:
<property name="cronExpression" value="0 0 3 L * * *" />
but got this error:
Caused by: ...
1
vote
2answers
567 views
Java Quartz Cron Trigger
I am using a Quartz Cron trigger in my java program. The Cron expression I used is 0 0 * * * ?
Now I wanted a scheduler to execute once an hour. To test the same started my jboss server and after ...
1
vote
2answers
277 views
Can anybody explain this?
This is from Quartz Scheduler's javadocs for method setTimeZone of class CronTrigger:
If setCronExpression(CronExpression)
is called after this method, the
TimeZon setting on the ...
1
vote
2answers
1k views
Quartz Spring CronTrigger fired more times than configured
I have a cronTrigger for a job "digestJob":
<bean id="digestCronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="digestJob" />
...
1
vote
2answers
4k views
Quartz cron expression for cron triggers executed every Nth Hour/Day/Week/Month
I am developing an application that gives user ability to schedule some activity.
Inputs that are provided by user are
Value of N
Option amongst Hour/Day/Week/Month
Start Date
Start Time
I am ...
0
votes
0answers
20 views
rufus scheduler for delaying any job
I want to use rufus scheduler for for delaying a job(lets say fetching time).
But the job comes very often(lets say 3 jobs per sec) and i just want to perform that job after 5 minutes after the job ...
0
votes
1answer
31 views
How to simulate 'No. of occurrences' or 'Repeat Count' with CronTriggers in Java?
I am using the Quartz Scheduler (version 1.8.3 due to project constraints) and I as assigned the task of creating an "MS Outlook-like" scheduler for Jobs specific to my project. Everything seems fine ...
0
votes
0answers
148 views
How to invoke an EJB Session Bean method from a Quartz scheduled job using a JobDetail object?
I would like to invoke a method inside a stateless session bean every two seconds. Right now, my task works if I simply run a System.Out statement (look at the two commented lines in the code below). ...
0
votes
0answers
50 views
How to cancel or stop cron via cron expression cleanly
I have a cron job running every night at 4:15am
schedule.Backup.cron=0 15 4 * * ?
so at min if I was to leave it empty e.g. schedule.Backup.cron= ,the code will throw exception.
so my work around ...
0
votes
2answers
53 views
execute http (otherwise know cron job) whenver page is loaded (php)
I would like to know if, and how, I can call or execute what otherwise would be known as a cron job
If I were to enter this crontab through my host cron manager interface it would look like:
wget ...
0
votes
2answers
120 views
Grails - Parameter in a Quartz job Trigger
I have the following quartz job, set via Quartz-plugin:
class UserMonthlyNotificationJob {
static triggers = {
cron name:'dailyTrigger', cronExpression: " ... "
cron ...
0
votes
1answer
88 views
CruiseControl.net cronTrigger confusion
I have setup 2 projects in cc.net for the same web application. A continuous integration project that uses an interval trigger and works fine and a "nightly build" project that uses a cronTrigger. ...
0
votes
1answer
287 views
Why am i getting “Trigger's related Job's name cannot be null” error in quartz
I'm getting this error, even though i'm specifying a name, group and description for my job, and in the debugger i can see values for all these fields in the detail variable.
JobDetail detail = ...
0
votes
1answer
664 views
quartz cron trigger first fire time
Is there any way setting crontrigger to begin after a specific date .That is crontrigger going to fire after a specific date using its cron expression.I try using crontrigger starttime and firstfire ...
0
votes
1answer
902 views
How to force a Cron Job to start ahead of time?
I have just provided a way to let my users stop their Cron Task. The cron is set up to run every 5 minutes to make sure its up and running BUT I would like to be able to start the cron job manually if ...
0
votes
2answers
30 views
Eclipse and cronTriggered jobs debugging
I have a webapp developped in Java, using GWT, Spring and Hibernate.
This app has a cronTriggered job (which extends QuartzJobBean), set in a application-context.xml file.
How do I debug that job ...
0
votes
1answer
518 views
configuration of a cronTrigger (with opensymphony quartz)
I have a web app that has to do something every, let's say first day of every month.
It's a GWT application divided into 4 projects (if that ever matters) and I added these jars using Maven (which ...
0
votes
2answers
357 views
cron job between 8am and 8pm 4 times at specified intervals of time
i need to run a job 'x' times a day. job timing is every (say 'y' hours) between 8am and 8pm.
i read the documentation of cron between could not figure out how to place the "between times". any ...
0
votes
1answer
194 views
What is the code to call a cron job from php?
I would like to call a cron job from within a PHP script. I am assuming this is the correct and most efficient solution to my problem.
Background:
I want to run a script that uses a user's ...
0
votes
1answer
550 views
How to call a CronTriggerBean stored in a JDBCJobStore?
I need some help. I am using Quartz Scheduling and have configured a CronTrigger to run each night at 10PM. I am using the JDBCJobStore to take advantage of the Clustering.
The job runs at 10PM ...
0
votes
1answer
358 views
How often does the Quartz Scheduler wakes up?
I'm using Quartz Scheduling, more specifically a cron trigger set to wake up at 10PM every day of the week.
Another group I interface with are asking how many times during the day will the ...
0
votes
1answer
101 views
I don't understand getNextIncludedTime() in Quartz
I'm probably just being an idiot - it's been a long day! I've misunderstood something in my first foray into Quartz...
Given this code:
DateTime dt = new DateTime();
dt = dt.withDayOfMonth(20);
...
-3
votes
1answer
30 views
set cron job for every 45 day to execute my php script using cron?
I need to run my cron after every 45 days in single line of shell terminal.
Please provide some solution for the same
Thanks