package com.fdkankan.download; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.context.annotation.ComponentScan; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; /** *
* TODO *
* * @author dengsixing * @since 2022/2/22 **/ @SpringBootApplication @EnableScheduling @ComponentScan(basePackages = {"com.fdkankan.*"}) @RefreshScope @EnableAsync public class SceneDownloadApplication { public static void main(String[] args) { SpringApplication.run(SceneDownloadApplication.class, args); } }