xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
38
39
40
41
package com.dl;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup;
 
/**
 * 启动程序
 *
 * @author dl
 */
 
@SpringBootApplication
public class DingleApplication {
 
 
    public static void main(String[] args) {
//        System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication application = new SpringApplication(DingleApplication.class);
        application.setApplicationStartup(new BufferingApplicationStartup(2048));
        application.run(args);
//        System.out.println("(♥◠‿◠)ノ゙  RuoYi-Flowable-Plus启动成功   ლ(´ڡ`ლ)゙");
        System.out.println("(♥◠‿◠)ノ゙  钉乐Flowable-Plus启动成功   ლ(´ڡ`ლ DL)゙  \n" +
            "                ,--,                             \n"+
            "             ,---.'|            ,--.             \n"+
            "    ,---,    |   | :          ,--.'|    ,---,.   \n"+
            "  .'  .' `\\  :   : |      ,--,:  : |  ,'  .'  \\  \n"+
            ",---.'     \\ |   ' :   ,`--.'`|  ' :,---.' .' |  \n"+
            "|   |  .`\\  |;   ; '   |   :  :  | ||   |  |: |  \n"+
            ":   : |  '  |'   | |__ :   |   \\ | ::   :  :  /  \n"+
            "|   ' '  ;  :|   | :.'||   : '  '; |:   |    ;   \n"+
            "'   | ;  .  |'   :    ;'   ' ;.    ;|   :     \\  \n"+
            "|   | :  |  '|   |  ./ |   | | \\   ||   |   . |  \n"+
            "'   : | /  ; ;   : ;   '   : |  ; .''   :  '; |  \n"+
            "|   | '` ,/  |   ,/    |   | '`--'  |   |  | ;   \n"+
            ";   :  .'    '---'     '   : |      |   :   /    \n"+
            "|   ,.'                ;   |.'      |   | ,'     \n"+
            "---'                  '---'        `----'          ");
    }
 
}