[ISSUE #508] Add @EnableScheduling to create .json files for each day (#602)

bug(console) add @EnableScheduling to enable cronjobs
This commit is contained in:
affe
2020-07-28 16:45:50 +08:00
committed by RongtongJin
parent f37df9532f
commit c55baccc71

View File

@@ -19,8 +19,10 @@ package org.apache.rocketmq.console;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
@ServletComponentScan
public class App {