2021-07-23 17:57:58 +08:00
|
|
|
package com.xhpc;
|
2021-07-13 17:50:09 +08:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
2021-07-23 17:57:58 +08:00
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
2021-07-15 16:11:18 +08:00
|
|
|
import org.springframework.context.annotation.ImportResource;
|
2021-07-13 17:50:09 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 充电桩服务
|
|
|
|
|
*
|
|
|
|
|
* @author zz
|
|
|
|
|
*/
|
2021-07-23 17:57:58 +08:00
|
|
|
@EnableFeignClients
|
2021-07-17 16:49:41 +08:00
|
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
|
|
|
|
|
@ImportResource(locations = {"classpath:svcmainlogic.xml"})
|
|
|
|
|
public class XhpcPPApplication {
|
|
|
|
|
|
2021-07-13 17:50:09 +08:00
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
|
|
|
|
SpringApplication.run(XhpcPPApplication.class, args);
|
|
|
|
|
System.out.println("(♥◠‿◠)ノ゙ 充电桩服务模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
|
|
|
|
" .-------. ____ __ \n" +
|
|
|
|
|
" | _ _ \\ \\ \\ / / \n" +
|
|
|
|
|
" | ( ' ) | \\ _. / ' \n" +
|
|
|
|
|
" |(_ o _) / _( )_ .' \n" +
|
|
|
|
|
" | (_,_).' __ ___(_ o _)' \n" +
|
|
|
|
|
" | |\\ \\ | || |(_,_)' \n" +
|
|
|
|
|
" | | \\ `' /| `-' / \n" +
|
|
|
|
|
" | | \\ / \\ / \n" +
|
|
|
|
|
" ''-' `'-' `-..-' ");
|
|
|
|
|
}
|
2021-07-17 16:49:41 +08:00
|
|
|
|
2021-07-13 17:50:09 +08:00
|
|
|
}
|