提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm; |
懒 |
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); |
0899ce
|
21 |
System.out.println("(♥◠‿◠)ノ゙ 系统启动成功 ლ(´ڡ`ლ)゙ \n" + |
J |
22 |
" .-./`) _______ ______ ,---. ,---. \n"+ |
|
23 |
" '_ .') / __ | _ `''. | > < | \n"+ |
|
24 |
" (_ (_) _) | ,_/ __) | _ | ) _ | , >< , | \n"+ |
|
25 |
" / . ,-./ ) |( ''_' ) || | _ /| | \n"+ |
|
26 |
" ___ |-'`| > '_ '`) | . (_) `. || _( )_/ | | \n"+ |
|
27 |
"| | | ' > (_) ) __ |(_ ._) '| (_ o _) | | \n"+ |
|
28 |
"| `-' / ( . .-'_/ )| (_. .' / | (_,_) | | \n"+ |
|
29 |
" / `-'`-' / | .' | | | | \n"+ |
|
30 |
" `-..-' `._____.' '-----'` '--' '--' \n" |
|
31 |
|
|
32 |
); |
fd2207
|
33 |
} |
懒 |
34 |
} |