blob: a102b454cf7422f8508111f78b6fbca3d04e581f [file] [log] [blame]
Jiarenxiang25a45b72025-03-13 16:09:13 +08001package com.ruoyi;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
6
7/**
8 * 启动程序
9 *
10 * @author ruoyi
11 */
12@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
13public class RuoYiApplication
14{
15 public static void main(String[] args)
16 {
17 // System.setProperty("spring.devtools.restart.enabled", "false");
18 SpringApplication.run(RuoYiApplication.class, args);
19 // ANSI escape code for blue text
20 String blue = "\u001B[34m";
21 // ANSI escape code to reset text color
22 String reset = "\u001B[0m";
23
24 System.out.println(blue + " ----赵雨滔香香香启动成功 喵喵喵" + reset);
25 }
26}