Blame view

jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgApplication.java 1.77 KB
1
2
package org.jeecg;
3
4
5
6
7
import java.net.InetAddress;
import java.net.UnknownHostException;

import org.apache.catalina.Context;
import org.apache.tomcat.util.scan.StandardJarScanner;
8
import org.springframework.boot.SpringApplication;
9
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
10
import org.springframework.boot.autoconfigure.SpringBootApplication;
11
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
12
import org.springframework.context.ConfigurableApplicationContext;
13
import org.springframework.context.annotation.Bean;
14
15
import org.springframework.core.env.Environment;
16
17
import lombok.extern.slf4j.Slf4j;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
18
19
20
21
@Slf4j
@EnableSwagger2
@SpringBootApplication
22
@EnableAutoConfiguration
23
24
public class JeecgApplication {
25
26
  public static void main(String[] args) throws UnknownHostException {
    //System.setProperty("spring.devtools.restart.enabled", "true");
27
28
29
30
31
32
33
34
35
36
37
38
39
    ConfigurableApplicationContext application = SpringApplication.run(JeecgApplication.class, args);
    Environment env = application.getEnvironment();
    String ip = InetAddress.getLocalHost().getHostAddress();
    String port = env.getProperty("server.port");
    String path = 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-ui: \thttp://" + ip + ":" + port + path + "/swagger-ui.html\n\t" +
        "Doc: \t\thttp://" + ip + ":" + port + path + "/doc.html\n" +
        "----------------------------------------------------------");
40
41
  }
42
}