|
@@ -7,12 +7,15 @@ import lombok.extern.log4j.Log4j2;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
+import org.springframework.boot.system.ApplicationHome;
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|
import org.springframework.core.env.Environment;
|
|
import org.springframework.core.env.Environment;
|
|
|
|
|
|
import java.io.File;
|
|
import java.io.File;
|
|
import java.net.InetAddress;
|
|
import java.net.InetAddress;
|
|
import java.net.UnknownHostException;
|
|
import java.net.UnknownHostException;
|
|
|
|
+import java.nio.file.Path;
|
|
|
|
+import java.nio.file.Paths;
|
|
|
|
|
|
|
|
|
|
@Log4j2
|
|
@Log4j2
|
|
@@ -28,6 +31,8 @@ public class RunEconomyApplication {
|
|
String ip = InetAddress.getLocalHost().getHostAddress();
|
|
String ip = InetAddress.getLocalHost().getHostAddress();
|
|
String port = env.getProperty("server.port");
|
|
String port = env.getProperty("server.port");
|
|
String path = env.getProperty("server.servlet.context-path");
|
|
String path = env.getProperty("server.servlet.context-path");
|
|
|
|
+ ApplicationHome home = new ApplicationHome(RunEconomyApplication.class);
|
|
|
|
+ String filePath = home.getSource().getParentFile().getAbsolutePath();
|
|
|
|
|
|
createFolder();
|
|
createFolder();
|
|
|
|
|
|
@@ -37,6 +42,7 @@ public class RunEconomyApplication {
|
|
"网络地址: \t\thttp://" + ip + ":" + port + path + "\n\t" +
|
|
"网络地址: \t\thttp://" + ip + ":" + port + path + "\n\t" +
|
|
"API文档: \t\thttp://" + ip + ":" + port + path + "/swagger-ui.html\n" +
|
|
"API文档: \t\thttp://" + ip + ":" + port + path + "/swagger-ui.html\n" +
|
|
"-----------------------------------------------------------------------");
|
|
"-----------------------------------------------------------------------");
|
|
|
|
+ log.info(filePath);
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|