提交 | 用户 | 时间
|
e57a89
|
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); |
|
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 |
} |