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"+
|
"---' '---' `----' ");
|
}
|
|
}
|