|
@@ -1,11 +1,19 @@
|
|
|
package com.usky.backend;
|
|
|
|
|
|
|
|
|
+import com.ruoyi.common.swagger.annotation.EnableCustomSwagger2;
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
+import org.springframework.context.ConfigurableApplicationContext;
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
+import org.springframework.core.env.Environment;
|
|
|
+
|
|
|
+import java.net.InetAddress;
|
|
|
+import java.net.UnknownHostException;
|
|
|
|
|
|
/**
|
|
|
* 系统模块
|
|
@@ -14,14 +22,26 @@ import org.springframework.context.annotation.ComponentScan;
|
|
|
*/
|
|
|
|
|
|
|
|
|
+@EnableCustomSwagger2
|
|
|
@EnableFeignClients(basePackages = "com.usky")
|
|
|
@MapperScan(value = "com.usky.backend.mapper")
|
|
|
@ComponentScan("com.usky")
|
|
|
@SpringBootApplication
|
|
|
public class BackendApplication
|
|
|
{
|
|
|
- public static void main(String[] args)
|
|
|
- {
|
|
|
- SpringApplication.run(BackendApplication.class, args);
|
|
|
+ private static final Logger LOGGER = LoggerFactory.getLogger(BackendApplication.class);
|
|
|
+
|
|
|
+ public static void main(String[] args) throws UnknownHostException {
|
|
|
+ ConfigurableApplicationContext application = SpringApplication.run(BackendApplication.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");
|
|
|
+ LOGGER.info("\n----------------------------------------------------------\n\t" +
|
|
|
+ "Application is running! Access URLs:\n\t" +
|
|
|
+ "Local: \t\thttp://localhost:" + port + (null==path?"":path) + "/\n\t" +
|
|
|
+ "External: \thttp://" + ip + ":" + port + (null==path?"":path) + "/\n\t" +
|
|
|
+ "Api: \t\thttp://" + ip + ":" + port + (null==path?"":path) + "/swagger-ui/index.html\n\t" +
|
|
|
+ "----------------------------------------------------------");
|
|
|
}
|
|
|
}
|