The need to run scheduled jobs is increasing and becoming common across all
J2EE applications. The current J2EE specification doesn't provide an easy way
to schedule jobs inside an enterprise application.
We can broadly classify scheduled J2EE jobs into two categories:
Server-specific scheduled jobs and application-specific scheduled jobs. This
article explores how to schedule application-specific jobs inside a WebLogic
Application Server.
Server-Specific vs. Application-Specific Scheduled Jobs
Server-specific scheduled jobs are associated with the lifecycle of the
application server. Typically these jobs are started during the server's
startup and will be active until it's shut down. As a consequence, all the
resources needed for scheduled jobs have to be specified in th... (more)