blob: a102b454cf7422f8508111f78b6fbca3d04e581f [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);
}
}