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; /** *

* TODO *

* * @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); } }