1234567891011121314151617181920212223242526272829 |
- 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;
- /**
- * <p>
- * TODO
- * </p>
- *
- * @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);
- }
- }
|