-
Jan 23rd, 2007, 08:01 PM
#1
[Off-topic] How to trigger an EJB method periodically
Hello.
We have an EJB method (in weblogic 8.1) that must be executed periodically (eg: every minute). My doubt is how to invoke this method periodically. I was thinking about create a simple client to invoke the method and schedule it in the machine crontab.
Is there any better solution?
Thanks
-
Jan 23rd, 2007, 10:39 PM
#2
Yes. You can create a quartz job to invoke your EJB. The reference manual should be a good place to start.
Bill
-
Jan 24th, 2007, 02:54 AM
#3
I would agree with Bill. There are a few ways of solving the problem, the reference manual has several examples that should be of use. Something like MethodInvokingJobDetailFactoryBean might be of use.
http://www.springframework.org/docs/...cheduling.html
-
Jan 24th, 2007, 06:01 AM
#4
Using Quartz bring me a problem.
If my support team wants to stop this batch procecess?
They need to stop my application? I think it's more confortable to them just to comment a line in the crontab.
How do you see this?
Thanks
-
Jan 24th, 2007, 06:04 AM
#5
You don't have to stop the server if you want to stop the job. You can unschedule jobs.
-
Jan 24th, 2007, 07:34 AM
#6
How can I unschedule my job? JMX?
I'm using Weblogic 8.1 with Java 1.4. Is this possible?
Thanks
-
Jan 24th, 2007, 07:39 AM
#7
You could use JMX if you wanted to and update the callee, telling it ignore invocations. This way everything else keeps working and it's easy to turn back on. If you are using Quartz however jobs can simply be unscheduled for execution (paused, resumed, removed, etc....)
http://quartz.sourceforge.net/javado...lan g.String)
-
Jan 24th, 2007, 12:10 PM
#8
Thanks for your help.
I didn't understand how can I manage my scheduler without a JMX console. If was using JDK1.5 it would be easier, but I stuck on version 1.4.
Another question: Are you thinking in run this scheduler as a single Java application or it would be an enterprise aapplication deployed in my app server?
Thanks
-
Jan 24th, 2007, 03:03 PM
#9
If you want to manage this thing, you're obviously going to need some kind of interface onto this. A previous project I worked on had to provide a mangement console onto Quartz jobs to allow them to be managed (paused, resumed, rescheduled, etc.....). As for the running of it, that would upto you to decide.
-
Jan 24th, 2007, 05:39 PM
#10
Would you recommend any console or interface for this?
For crontab I have Control-M. And how about Quartz?
Thanks again.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules