How can I configure a schedule intervals:
@Schedule(persistent=true, minute="*", second="*/5", hour="*")
outside of the application code?
- How can I configure it in ejb-jar.xml?
- Can I configure it outside the application (kind of properties file)?
|
feedback
|
|
According to the EJB 3.1 specification, automatic timers can be configured through annotations or through the
And my understanding of the deployment descriptor XLM schema is that you define it using a
See the definition of the References
| |||
|
feedback
|
|
Here is an example of a scheduling in the deployment descriptor:
Another way of configuring timers is with a programmatic scheduling.
| ||||
|
feedback
|