GeoServerApplication.java 558 B

123456789101112131415161718192021
  1. package cn.com.taiji.track;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.scheduling.annotation.EnableScheduling;
  5. /**
  6. * @author chenfangchao
  7. * @title: GeoServerApplication
  8. * @projectName geoserver-project
  9. * @description: TODO
  10. * @date 2022/8/11 3:17 PM
  11. */
  12. @SpringBootApplication
  13. @EnableScheduling
  14. public class GeoServerApplication {
  15. public static void main(String[] args) {
  16. SpringApplication.run(GeoServerApplication.class,args);
  17. }
  18. }