2022-01-25 14:28:38 +08:00
|
|
|
package com.xhpc;
|
2021-07-28 18:07:25 +08:00
|
|
|
|
|
|
|
|
import com.xhpc.common.security.annotation.EnableCustomConfig;
|
|
|
|
|
import com.xhpc.common.security.annotation.EnableRyFeignClients;
|
2022-01-25 14:28:38 +08:00
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
2021-07-29 17:14:29 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2022-01-25 14:28:38 +08:00
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
2021-07-28 18:07:25 +08:00
|
|
|
|
|
|
|
|
/**
|
2022-01-25 14:28:38 +08:00
|
|
|
* @author yuyang
|
|
|
|
|
* @date 2022/1/19 17:52
|
2021-07-28 18:07:25 +08:00
|
|
|
*/
|
|
|
|
|
@EnableCustomConfig
|
|
|
|
|
@EnableRyFeignClients
|
2022-01-25 14:28:38 +08:00
|
|
|
@EnableFeignClients
|
2021-07-28 18:07:25 +08:00
|
|
|
@SpringBootApplication
|
2022-01-25 14:28:38 +08:00
|
|
|
@MapperScan("com.xhpc.card.mapper")
|
|
|
|
|
public class CardApplication {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(CardApplication.class, args);
|
|
|
|
|
System.out.println("(♥◠‿◠)ノ゙ 卡服务启动成功 ლ(´ڡ`ლ)゙ \n" +
|
2021-07-28 18:07:25 +08:00
|
|
|
" .-------. ____ __ \n" +
|
|
|
|
|
" | _ _ \\ \\ \\ / / \n" +
|
|
|
|
|
" | ( ' ) | \\ _. / ' \n" +
|
|
|
|
|
" |(_ o _) / _( )_ .' \n" +
|
|
|
|
|
" | (_,_).' __ ___(_ o _)' \n" +
|
|
|
|
|
" | |\\ \\ | || |(_,_)' \n" +
|
|
|
|
|
" | | \\ `' /| `-' / \n" +
|
|
|
|
|
" | | \\ / \\ / \n" +
|
|
|
|
|
" ''-' `'-' `-..-' ");
|
|
|
|
|
}
|
|
|
|
|
}
|