Set/configure the EJB Timer Service’s DataSource
问题 I'm trying to use the Timer Service in EJB 3.1 in my app. @Stateless @LocalBean public class StatelessTimerSessionBean { @Schedule(minute = "*", second = "0", dayOfMonth = "*", month = "*", year = "*", hour = "9-17", dayOfWeek = "Mon-Fri") public void myTimer() { System.out.println("Timer event: " + new Date()); } } ".. set the EJB Timer Service’s Timer DataSource setting to a valid JDBC resource.." from EJB Timer Service I cannot figure out how to configure the Timer Datasource correctly?