在Weblogic服务器上两次执行Spring-boot调度触发器

时间:2019-07-17 09:58:04

标签: spring-boot scheduled-tasks scheduler weblogic12c

我正在Spring-boot Web应用程序中编写调度程序。 它在本地服务器上工作正常,但是当我在weblogic服务器12c版本上部署相同的应用程序时。

但是@Scheduled在weblogic上触发了两次。

@Configuration
@EnableScheduling
public class AuFormBuilderConfig {

        //  @Bean
        //  public Schedular bean() {
        //      return new Schedular();
        //  }

        }

服务类方法:

@Scheduled(cron = "0 * * * *  ?")  
public void test() { 
    SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    System.out.println("New Schedular>>>>>>>>>");
    System.out.println("Schedular called at >>"+dateFormat.format(new Date()));
}

0 个答案:

没有答案