|
@@ -23,30 +23,6 @@ import java.net.UnknownHostException;
|
|
|
@Slf4j
|
|
|
@SpringBootApplication
|
|
|
@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
|
|
|
-//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" +
|
|
|
-// "----------------------------------------------------------");
|
|
|
-//
|
|
|
-// }
|
|
|
-//
|
|
|
-//}
|
|
|
-
|
|
|
public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|
|
|
|
|
@Override
|
|
@@ -54,8 +30,32 @@ public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|
|
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" +
|
|
|
+ "----------------------------------------------------------");
|
|
|
|
|
|
- public static void main(String[] args) {
|
|
|
- SpringApplication.run(JeecgSystemApplication.class, args);
|
|
|
}
|
|
|
-}
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+//public class JeecgSystemApplication extends SpringBootServletInitializer {
|
|
|
+//
|
|
|
+// @Override
|
|
|
+// protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
|
|
+// return application.sources(JeecgSystemApplication.class);
|
|
|
+// }
|
|
|
+//
|
|
|
+//
|
|
|
+// public static void main(String[] args) {
|
|
|
+// SpringApplication.run(JeecgSystemApplication.class, args);
|
|
|
+// }
|
|
|
+//}
|