|
1
2
3
4
5
6
|
package com.huaheng;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
7
8
9
|
import org.springframework.boot.web.embedded.undertow.UndertowServletWebServerFactory;
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
import org.springframework.context.annotation.Bean;
|
|
10
11
12
|
/**
* 启动程序
|
|
13
|
*
|
|
14
15
|
* @author huaheng
*/
|
|
16
|
@MapperScan({"com.huaheng.pc.**.**.mapper"})
|
|
17
18
19
20
|
//添加SecurityAutoConfiguration.class,防止报java.lang.ArrayStoreException错
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
public class HuaHengApplication
{
|
|
21
22
23
24
25
26
27
|
@Bean // 此处相当于将undertow server注入到spring-context 中,这里相对于tomcat设置要多此动作
public ServletWebServerFactory servletContainer() {
UndertowServletWebServerFactory undertow = new UndertowServletWebServerFactory();
return undertow;
}
|
|
28
29
30
31
|
public static void main(String[] args)
{
// System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(HuaHengApplication.class, args);
|
|
32
33
|
System.out.println("*************** 华恒WMS启动成功JAR ***************\n" +
" >>> WMS启动成功JAR! <<< \n"+
|
|
34
35
36
37
38
39
40
41
42
43
44
45
46
|
" へ /|▓\n"+
" /\7 ∠_/\n"+
" / │ / /\n"+
" │ Z _,< / 〈ヽ\n"+
" │ ` ヽ / 〉\n"+
" Y `/ / 〉\n"+
" ( ● ヽ ● /. 〈 /\n"+
" () ( | \ 〈 \\n"+
" >_ ' _ . '│ //\n"+
" /へ / )<| \\\n"+
" ヽ_) (_/ │//\n"+
" 7 | /\n"+
" >―r` ̄ ̄` `―_' \n"
|
|
47
48
49
|
);
}
|
|
50
|
}
|