wujian
2024-02-22 268beb4ebc1e5b8d4ad715b71cd64a0944073a87
提交 | 用户 | 时间
268beb 1 package com.jcdm;
W 2
3 import org.springframework.boot.SpringApplication;
4 import org.springframework.boot.autoconfigure.SpringBootApplication;
5 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
6
7 /**
8  * 启动程序
9  * 
10  * @author jc
11  */
12
13
14 @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
15 public class MesApplication
16 {
17     public static void main(String[] args)
18     {
19         // System.setProperty("spring.devtools.restart.enabled", "false");
20         SpringApplication.run(MesApplication.class, args);
21         System.out.println("(♥◠‿◠)ノ゙  系统启动成功   ლ(´ڡ`ლ)゙  \n" /*+
22                 " .-------.       ____     __        \n" +
23                 " |  _ _   \\      \\   \\   /  /    \n" +
24                 " | ( ' )  |       \\  _. /  '       \n" +
25                 " |(_ o _) /        _( )_ .'         \n" +
26                 " | (_,_).' __  ___(_ o _)'          \n" +
27                 " |  |\\ \\  |  ||   |(_,_)'         \n" +
28                 " |  | \\ `'   /|   `-'  /           \n" +
29                 " |  |  \\    /  \\      /           \n" +
30                 " ''-'   `'-'    `-..-'              " */
31                 );
32     }
33 }