@Startup
@Singleton
public class TestTimer {
private static int count = 0;
@Schedule(second="*/10", minute="*", hour="*", info="MyTimer")
public void execute() {
System.out.println("its running count..."+count);
count++;
}
}
このコードを Tomcat 7.xx で実行したいのですが、起動時に web.xml または ejb-jar.xml で実行するために必要な構成を教えてください。