Can the EJB 3.1 @Schedule be configured outside of the application code?

Viewed 11977

How can I configure a schedule intervals:

@Schedule(persistent=true, minute="*", second="*/5", hour="*")

outside of the application code?

  1. How can I configure it in ejb-jar.xml?
  2. Can I configure it outside the application (kind of properties file)?
3 Answers
Related