123456789101112131415161718192021222324252627282930313233 |
- package com.fdkankan.contro;
- import com.dtflys.forest.springboot.annotation.ForestScan;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
- 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.*"})
- @EnableAsync
- @MapperScan("com.fdkankan.**.mapper")
- @EnableDiscoveryClient
- @ForestScan(basePackages = "com.fdkankan.contro.httpclient")
- public class ModelingControlApplication {
- public static void main(String[] args) {
- SpringApplication.run(ModelingControlApplication.class, args);
- }
- }
|