需要在特定时间段之后每次使用java运行特定方法

时间:2017-11-07 13:07:11

标签: java

我需要自动化我的API案例,其中我用来运行API的令牌在每小时后过期。所以我需要使用特定方法重新生成令牌。当我运行自动化时,如何在每小时后运行此特定方法?

3 个答案:

答案 0 :(得分:1)

你可以简单地使用EnableScheduling

这样的事情可以解决问题(改编自@EnableScheduling的Javadoc):

@Configuration
@EnableScheduling
public class MyAppConfig implements SchedulingConfigurer {

    @Autowired
    Environment env;

    @Bean
    public MyBean myBean() {
        return new MyBean();
    }

    @Bean(destroyMethod = "shutdown")
    public Executor taskExecutor() {
        return Executors.newScheduledThreadPool(100);
    }

    @Override
    public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
        taskRegistrar.setScheduler(taskExecutor());
        taskRegistrar.addTriggerTask(
                new Runnable() {
                    @Override public void run() {
                        myBean().getSchedule();
                    }
                },
                new Trigger() {
                    @Override public Date nextExecutionTime(TriggerContext triggerContext) {
                        Calendar nextExecutionTime =  new GregorianCalendar();
                        Date lastActualExecutionTime = triggerContext.lastActualExecutionTime();
                        nextExecutionTime.setTime(lastActualExecutionTime != null ? lastActualExecutionTime : new Date());
                        nextExecutionTime.add(Calendar.MILLISECOND, env.getProperty("myRate", Integer.class)); //you can get the value from wherever you want
                        return nextExecutionTime.getTime();
                    }
                }
        );
    }
}

另一种方法就是在你的api调用方法之前放@Scheduled(cron =“0 0 0/1 1/1 *?”):

@Scheduled(cron = "0 15 10 15 * ?")
public void scheduleTaskUsingCronExpression() {

    long now = System.currentTimeMillis() / 1000;
    System.out.println(
      "schedule tasks using cron jobs - " + now);
}

答案 1 :(得分:0)

您可以尝试睡眠方法。

new Thread(()->{
    while(true) {
        method(); //your method
        Thread.sleep(3600000);
    }
}).start();

答案 2 :(得分:0)

您可以使用方法“scheduleAtFixedRate”

来使用类似cron的内容

How to create a Java cron job