Blame view

juvenile-prosecution-boot/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgSystemApplication.java 2.08 KB
b7c29a22   wxy   初始提交
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  package org.jeecg;
  
  import lombok.extern.slf4j.Slf4j;
  import org.apache.catalina.Context;
  import org.apache.tomcat.util.scan.StandardJarScanner;
  import org.jeecg.common.util.oConvertUtils;
  import org.springframework.boot.SpringApplication;
  //import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  import org.springframework.boot.autoconfigure.SpringBootApplication;
  import org.springframework.boot.builder.SpringApplicationBuilder;
  import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
  import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
  import org.springframework.context.ConfigurableApplicationContext;
  import org.springframework.context.annotation.Bean;
  import org.springframework.core.env.Environment;
  
  import java.net.InetAddress;
  import java.net.UnknownHostException;
  
  /**
  * 单体启动类(采用此类启动为单体模式)
  */
  @Slf4j
  @SpringBootApplication
  public class JeecgSystemApplication extends SpringBootServletInitializer {
  
      @Override
      protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
          return application.sources(JeecgSystemApplication.class);
      }
  
      public static void main(String[] args) throws UnknownHostException {
          ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemApplication.class, args);
          Environment env = application.getEnvironment();
          String ip = InetAddress.getLocalHost().getHostAddress();
          String port = env.getProperty("server.port");
          String path = oConvertUtils.getString(env.getProperty("server.servlet.context-path"));
          log.info("\n----------------------------------------------------------\n\t" +
                  "Application Jeecg-Boot is running! Access URLs:\n\t" +
                  "Local: \t\thttp://localhost:" + port + path + "/\n\t" +
                  "External: \thttp://" + ip + ":" + port + path + "/\n\t" +
                  "Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" +
                  "----------------------------------------------------------");
  
      }
  
  }