32 lines
1.2 KiB
Java
Raw Normal View History

2021-07-13 17:50:09 +08:00
package com.xhpc.pp;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
2021-07-15 16:11:18 +08:00
import org.springframework.context.annotation.ImportResource;
2021-07-13 17:50:09 +08:00
/**
* 充电桩服务
*
* @author zz
*/
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
2021-07-15 16:11:18 +08:00
@ImportResource(locations={"classpath:svcmainlogic.xml"})
2021-07-13 17:50:09 +08:00
public class XhpcPPApplication
{
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" +
" ''-' `'-' `-..-' ");
}
}