123456789101112131415161718192021222324252627282930313233343536 |
- package com.onemap.analyse;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import com.onemap.common.security.annotation.EnableCustomConfig;
- import com.onemap.common.security.annotation.EnableRyFeignClients;
- import com.onemap.common.swagger.annotation.EnableCustomSwagger2;
- import org.springframework.scheduling.annotation.EnableScheduling;
- /**
- * 一张图分析模块
- *
- * @author siwei
- */
- @EnableScheduling
- @EnableCustomConfig
- @EnableCustomSwagger2
- @EnableRyFeignClients
- @SpringBootApplication
- public class OneMapAnalyseApplication
- {
- public static void main(String[] args)
- {
- SpringApplication.run(OneMapAnalyseApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 一张图分析模块启动成功 ლ(´ڡ`ლ)゙ \n" +
- " .-------. ____ __ \n" +
- " | _ _ \\ \\ \\ / / \n" +
- " | ( ' ) | \\ _. / ' \n" +
- " |(_ o _) / _( )_ .' \n" +
- " | (_,_).' __ ___(_ o _)' \n" +
- " | |\\ \\ | || |(_,_)' \n" +
- " | | \\ `' /| `-' / \n" +
- " | | \\ / \\ / \n" +
- " ''-' `'-' `-..-' ");
- }
- }
|