chenzx
2024-02-20 77847fe500de2519cba82d1a5ef03d055739f0d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ruoyi;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.core.annotation.Order;
 
/**
 * 启动程序
 *
 * @author ruoyi
 */
 
 
 
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class WumeiSmartApplication {
    public static void main(String[] args) {
        // System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication.run(WumeiSmartApplication.class, args);
        System.out.println("                               _                            _   \n" +
                "                              (_)                          | |             \n" +
                "__      ___   _ _ __ ___   ___ _   ___ _ __ ___   __ _ _ __| |_            \n" +
                "\\ \\ /\\ / / | | | '_ ` _ \\ / _ \\ | / __| '_ ` _ \\ / _` | '__| __|     \n" +
                " \\ V  V /| |_| | | | | | |  __/ | \\__ \\ | | | | | (_| | |  | |_         \n" +
                "  \\_/\\_/  \\__,_|_| |_| |_|\\___|_| |___/_| |_| |_|\\__,_|_|   \\__|     \n");
        System.out.println(
                " ----------开源生活物联网平台-----------\n" +
                        " =========wumei-smart启动成功=========\n");
    }
}