@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 中需要什么配置才能在启动时运行。