blob: 28698566f31429f6e96b94824cb7ad3bd98a810d [file] [log] [blame]
package com.ruoyi;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
/**
* 启动程序
*
* @author ruoyi
*/
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
public class RuoYiApplication {
public static void main(String[] args) {
// System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(RuoYiApplication.class, args);
// ANSI escape code for blue text
String blue = "\u001B[34m";
// ANSI escape code to reset text color
String reset = "\u001B[0m";
System.out.println(blue + " ----贾仁翔 喵喵喵" + reset);
}
}