liusuyi
2026-05-30 f4f4fc53260eb67483dce406a963628273786a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ard.gateway;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 
/**
 * 网关启动程序
 * 
 * @author ard
 */
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
public class ArdGatewayApplication
{
    public static void main(String[] args)
    {
        SpringApplication.run(ArdGatewayApplication.class, args);
        System.out.println("(♥◠‿◠)ノ゙  网关启动成功   ლ(´ڡ`ლ)゙  \n" +
                "      ___           ___                               \n" +
                "     /\\  \\         /\\  \\         _____            \n" +
                "    /::\\  \\       /::\\  \\       /::\\  \\         \n" +
                "   /:/\\:\\  \\     /:/\\:\\__\\     /:/\\:\\  \\     \n" +
                "  /:/ /::\\  \\   /:/ /:/  /    /:/  \\:\\__\\        \n" +
                " /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__|        \n" +
                " \\:\\/:/  \\/__/ \\:\\/:::::/  / \\:\\  \\ /:/  /    \n" +
                "  \\::/__/       \\::/~~/~~~~   \\:\\  /:/  /         \n" +
                "   \\:\\  \\        \\:\\~~\\        \\:\\/:/  /      \n" +
                "    \\:\\__\\        \\:\\__\\        \\::/  /        \n" +
                "     \\/__/         \\/__/         \\/__/    \n");
 
    }
}