package cn.com.taiji.beidou; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; /** * @author chenfangchao * @title: GeoServerApplication * @projectName geoserver-project * @description: TODO * @date 2022/8/11 3:17 PM */ @SpringBootApplication public class GeoServerApplication { public static void main(String[] args) { SpringApplication.run(GeoServerApplication.class,args); } }