I want to schedule a job in Jboss and websphere server. I have a piece of code in java which should execute at a certain frequency independantly.And it should execute in a server continiously. Is it possible to execute a code when server starts.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'd recommend to use Quartz Scheduler if you require full portability of the code (WebSphere, JBoss, Tomcat, etc.) You can initialize Quartz very easily by using build-in QuartzInitializerServlet or even better QuartzInitializerListener. |
||||
|
|
|
you could use Timer api. add @Startup on your bean. or add this to your web.xml (change properties for your convenience)
|
||||
|
|
|
Use
Hope this will work for you. I am using this and its very easy to configure. |
|||
|
|
|
|
|||
|