package com.aps.core;
|
|
import com.aps.common.security.annotation.EnableCustomConfig;
|
import com.aps.common.security.annotation.EnableRyFeignClients;
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
/**
|
* 业务服务
|
*
|
* @author ruoyi
|
*/
|
//@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
|
@EnableCustomConfig
|
@EnableRyFeignClients
|
@SpringBootApplication
|
public class APSCoreApplication
|
{
|
public static void main(String[] args)
|
{
|
SpringApplication.run(APSCoreApplication.class, args);
|
System.out.println("(♥◠‿◠)ノ゙ 文件服务模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
" .-------. ____ __ \n" +
|
" | _ _ \\ \\ \\ / / \n" +
|
" | ( ' ) | \\ _. / ' \n" +
|
" |(_ o _) / _( )_ .' \n" +
|
" | (_,_).' __ ___(_ o _)' \n" +
|
" | |\\ \\ | || |(_,_)' \n" +
|
" | | \\ `' /| `-' / \n" +
|
" | | \\ / \\ / \n" +
|
" ''-' `'-' `-..-' ");
|
}
|
}
|