BenchmarkingwebMain.java 662 B

12345678910111213141516171819202122
  1. package com.gyee.benchmarkingweb;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  6. /**
  7. * @ClassName : BenchmarkingwebMain
  8. * @Author : xieshengjie
  9. * @Date: 2021/11/16 15:15
  10. * @Description : 对标管理主启动类
  11. */
  12. @SpringBootApplication
  13. @MapperScan("com.gyee.benchmarkingweb.mapper")
  14. @EnableDiscoveryClient
  15. public class BenchmarkingwebMain {
  16. public static void main(String[] args) {
  17. SpringApplication.run(BenchmarkingwebMain.class,args);
  18. }
  19. }