Deploying Java @Schedule with Wildfly 8.1.0 Final
问题 I am trying to test the @Schedule annotation with the following code: import javax.ejb.Schedule; import javax.ejb.Singleton; import javax.ejb.Startup; @Singleton @Startup public class TimerTest { public TimerTest() { } @Schedule(second = "*", minute = "*", hour = "*") public void sayHello() { System.out.println("Hello"); } } However, when I deploy it to the standalone instance of wildfly 8.1.0 (final) I am getting the following error messages in the logs: 2014-09-23 08:38:03,076 ERROR [org