2019-05-19 18:54:09 +08:00
|
|
|
package org.jeecg;
|
|
|
|
|
2019-11-21 18:17:25 +08:00
|
|
|
import java.net.InetAddress;
|
|
|
|
import java.net.UnknownHostException;
|
|
|
|
|
|
|
|
import org.apache.catalina.Context;
|
|
|
|
import org.apache.tomcat.util.scan.StandardJarScanner;
|
2019-05-19 18:54:09 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
2019-10-18 18:37:41 +08:00
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
2019-05-19 18:54:09 +08:00
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2019-11-21 18:17:25 +08:00
|
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
2019-05-19 18:54:09 +08:00
|
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
2019-11-21 18:17:25 +08:00
|
|
|
import org.springframework.context.annotation.Bean;
|
2019-05-19 18:54:09 +08:00
|
|
|
import org.springframework.core.env.Environment;
|
|
|
|
|
2019-11-21 18:17:25 +08:00
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
2019-08-24 00:15:45 +08:00
|
|
|
|
2019-05-19 18:54:09 +08:00
|
|
|
@Slf4j
|
|
|
|
@EnableSwagger2
|
|
|
|
@SpringBootApplication
|
2019-10-18 18:37:41 +08:00
|
|
|
@EnableAutoConfiguration
|
2019-05-19 18:54:09 +08:00
|
|
|
public class JeecgApplication {
|
|
|
|
|
2019-12-25 13:14:08 +08:00
|
|
|
public static void main(String[] args) throws UnknownHostException {
|
|
|
|
//System.setProperty("spring.devtools.restart.enabled", "true");
|
2019-11-21 18:17:25 +08:00
|
|
|
|
2020-02-24 02:44:53 +08:00
|
|
|
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" +
|
|
|
|
"----------------------------------------------------------");
|
2019-11-21 18:17:25 +08:00
|
|
|
|
2020-02-24 02:44:53 +08:00
|
|
|
}
|
2019-05-19 18:54:09 +08:00
|
|
|
}
|