我需要调用基于 cron 模式的方法。这是我的 java 代码。我在其中包含了一个方法,我需要调用这个方法。我在 google 中尝试但不知道如何调用。
public class Schedule {
int i;
public String show()
{
return "hi"+i++;
}
public static void main(String args[])throws Exception
{
CamelContext context = new DefaultCamelContext();
context.addRoutes(new RouteBuilder() {
public void configure() {
from("quartz2://myGroup/myfirstrigger?cron=0/2+*+*+*+*+?").to(new Schedule().show());
}
});
context.start();
}
}
我也不确定这是否正确