@javax.ejb.Schedule: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
=Configuration= | =Configuration= | ||
The annotation is configured using a cron-like time expression |
Revision as of 16:29, 25 September 2017
External
Internal
Overview
Used by EJB to designate timeout callback methods that will be invoked by automatically-created timers.
Example:
@Schedule(hour="3", dayOfMonth="1", info="something")
public void toBeExecutedAt3AMOnTheFirstDayOfTheMonth() {
...
}
Configuration
The annotation is configured using a cron-like time expression