我正在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()));
}