CET-cmd-2.0/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/JeecgApplication.java

50 lines
1.9 KiB
Java
Raw Normal View History

package org.jeecg;
import lombok.extern.slf4j.Slf4j;
2019-11-21 18:17:25 +08:00
import org.apache.catalina.Context;
import org.apache.tomcat.util.scan.StandardJarScanner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
2019-11-21 18:17:25 +08:00
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.context.ConfigurableApplicationContext;
2019-11-21 18:17:25 +08:00
import org.springframework.context.annotation.Bean;
import org.springframework.core.env.Environment;
2019-11-21 18:17:25 +08:00
import springfox.documentation.swagger2.annotations.EnableSwagger2;
import java.net.InetAddress;
import java.net.UnknownHostException;
@Slf4j
@EnableSwagger2
@SpringBootApplication
public class JeecgApplication {
2019-12-25 13:14:08 +08:00
public static void main(String[] args) throws UnknownHostException {
2019-11-21 18:17:25 +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: \t\thttp://" + ip + ":" + port + path + "/doc.html\n" +
"----------------------------------------------------------");
2019-11-21 18:17:25 +08:00
}
/**
* tomcat-embed-jasper引用后提示jar找不到的问题
*/
@Bean
public TomcatServletWebServerFactory tomcatFactory() {
return new TomcatServletWebServerFactory() {
@Override
protected void postProcessContext(Context context) {
((StandardJarScanner) context.getJarScanner()).setScanManifest(false);
}
};
}
}