execute « Job « Spring Q&A





1. Executing a method from another class in Java... and more    stackoverflow.com

I have a method that returns a list of items called findItemByPIdEndDate() and its found inside MngtImpl.java class. Now I'd like to execute this method every once in a while, hourly ...

2. What is the most simple way to execute java class every 30 seconds    stackoverflow.com

I've been reading about java/spring/hibernate and worked trough a "dummy" examples so I told my friend to recommend something a bit harder for me, and now I'm stuck.. here is the ...

3. Job queueing and execute Mechanism    stackoverflow.com

In my webservice all method calls submits jobs to a queue. Basically these operations take long time to execute, so all these operations submit a Job to a queue and return ...

4. Spring @Scheduled is executing task twice when using annotations    stackoverflow.com

I have made task using Spring @Scheduled annotation, but for some reason it is executing task twice. My Spring Framework version is 3.0.2.

@Service
public class ReportService {

    @Scheduled(fixedDelay=1000 * ...

5. Quartz - execute jobs with past date.    forum.springsource.org

Quartz - execute jobs with past date. Hi (due to lack of dedicated submenu for Quartz i post here ) I have such a situation : I store jobs in DB ...

6. Quartz job executing multiple times.    forum.springsource.org

Quartz job executing multiple times. Hi all, I am trying to execute a job with quartz every 5 minutes, but instead get 10 jobs starting every 5 minutes. I have not ...

7. Executing multiple jobs at the same time    forum.springsource.org

Executing multiple jobs at the same time I have a process, which starts two spring-batch jobs at the same time and I get the following error message, how can I resolve ...

8. Possible for ScheduledTimerTask to execute at specified times instead of intervals?    forum.springsource.org

Possible for ScheduledTimerTask to execute at specified times instead of intervals? I need for some tasks to execute at specified times of the day, week or month. Just like a unix ...

9. Limit number of concurrent executing jobs    forum.springsource.org

Is there a way to limit the number of jobs that are executing concurrently? I have a job that I want to limit to 1 instance processing at any given time. ...





10. Encountered fatal error executing job.    forum.springsource.org

Encountered fatal error executing job. Hi, When I try to run my batch job i get below error. || ERROR || Encountered fatal error executing job || org.springframework.batch.core.job.AbstractJob:exe cute:270org.springframework.batch.core.JobExecutio nExecption: Flow ...

11. task:scheduled-tasks not executing    forum.springsource.org

12. list/manually execute all @Scheduled tasks    forum.springsource.org

How can I get a listing of all @Scheduled tasks and then arbitrarily execute any of the tasks? I know I can do this with Spring/Quartz with something like: Code: // ...

13. OptimisticLockingFailureException while executing parallel job    forum.springsource.org

OptimisticLockingFailureException while executing parallel job Hi, I have the following scenaria, I am running muliple instances of a same Job on multiple box's, which are pointing to a single Mysql Database ...

14. task:scheduler not executing tasks    forum.springsource.org

15. Executing selective steps of a job dynamically    forum.springsource.org

Hi, Consider a job configured with some 10 steps. If we want to execute selected steps of a job, that are decided at runtime, does spring batch supports this? Thanks, Sreenivas. ...