-2

我需要调用基于 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();    
}

 }

我也不确定这是否正确

4

1 回答 1

0

您应该查看有关 bean 绑定的文档(此处)。我认为您的路线会更好,如下所示:

from("quartz2://myGroup/myfirstrigger?cron=0/2+*+*+*+*+?")
  .bean(Schedule.class, "show");
于 2013-10-25T12:27:06.410 回答