Compare commits
No commits in common. "test" and "master" have entirely different histories.
|
@ -30,9 +30,10 @@ public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|||
ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemApplication.class, args);
|
||||
Environment env = application.getEnvironment();
|
||||
String ip = InetAddress.getLocalHost().getHostAddress();
|
||||
String path = oConvertUtils.getString(env.getProperty("server.servle1111t.context-path"));
|
||||
System.out.println("test");
|
||||
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" +
|
||||
|
@ -41,4 +42,3 @@ public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue