liusuyi
2023-04-24 4737f1e038743ced243c9e52423404d9034d6107
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
33
34
35
36
37
package com.ruoyi;
 
import com.dtflys.forest.springboot.annotation.ForestScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableAsync;
 
/**
 * 启动程序
 * 
 * @author ruoyi
 */
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class },scanBasePackages = {"com.ruoyi"})
@ForestScan("com.ruoyi.device.chatgpt.forest")
public class RuoYiApplication
{
    public static void main(String[] args)
    {
        // System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication.run(RuoYiApplication.class, args);
        System.out.println("(♥◠‿◠)ノ゙  安瑞达4.0平台启动成功   ლ(´ڡ`ლ)゙  \n" +
                "      ___           ___                               \n" +
                "     /\\  \\         /\\  \\         _____            \n" +
                "    /::\\  \\       /::\\  \\       /::\\  \\         \n" +
                "   /:/\\:\\  \\     /:/\\:\\__\\     /:/\\:\\  \\     \n" +
                "  /:/ /::\\  \\   /:/ /:/  /    /:/  \\:\\__\\        \n" +
                " /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__|        \n" +
                " \\:\\/:/  \\/__/ \\:\\/:::::/  / \\:\\  \\ /:/  /    \n" +
                "  \\::/__/       \\::/~~/~~~~   \\:\\  /:/  /         \n" +
                "   \\:\\  \\        \\:\\~~\\        \\:\\/:/  /      \n" +
                "    \\:\\__\\        \\:\\__\\        \\::/  /        \n" +
                "     \\/__/         \\/__/         \\/__/    \n");
    }
}