2020-02-13 10:48:51 +08:00
|
|
|
package com.ruoyi;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 启动程序
|
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
|
2020-02-13 10:48:51 +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");
|
2020-02-13 10:48:51 +08:00
|
|
|
SpringApplication.run(RuoYiApplication.class, args);
|
2021-05-10 23:53:15 +08:00
|
|
|
System.out.println("(♥◠‿◠)ノ゙ RuoYi-Vue-Plus启动成功 ლ(´ڡ`ლ)゙");
|
2020-02-13 10:48:51 +08:00
|
|
|
}
|
|
|
|
}
|