2020-02-13 10:48:51 +08:00
|
|
|
package com.ruoyi;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2021-10-29 16:55:42 +08:00
|
|
|
import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup;
|
2020-02-13 10:48:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 启动程序
|
2021-06-21 15:41:44 +08:00
|
|
|
*
|
2020-02-13 10:48:51 +08:00
|
|
|
* @author ruoyi
|
|
|
|
*/
|
2021-04-19 17:38:47 +08:00
|
|
|
|
2021-06-21 15:41:44 +08:00
|
|
|
@SpringBootApplication
|
2021-10-15 15:19:42 +08:00
|
|
|
public class RuoYiApplication {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2020-06-29 09:08:18 +08:00
|
|
|
System.setProperty("spring.devtools.restart.enabled", "false");
|
2021-10-29 16:55:42 +08:00
|
|
|
SpringApplication application = new SpringApplication(RuoYiApplication.class);
|
2021-10-29 17:37:15 +08:00
|
|
|
application.setApplicationStartup(new BufferingApplicationStartup(2048));
|
|
|
|
application.run(args);
|
2021-05-10 23:53:15 +08:00
|
|
|
System.out.println("(♥◠‿◠)ノ゙ RuoYi-Vue-Plus启动成功 ლ(´ڡ`ლ)゙");
|
2020-02-13 10:48:51 +08:00
|
|
|
}
|
2021-10-15 15:19:42 +08:00
|
|
|
|
2020-02-13 10:48:51 +08:00
|
|
|
}
|