From 6917e91398bc48ccdd45124269ed9baa770e7896 Mon Sep 17 00:00:00 2001 From: zhangdaiscott Date: Wed, 2 Dec 2020 13:39:20 +0800 Subject: [PATCH] =?UTF-8?q?system=E5=BE=AE=E6=9C=8D=E5=8A=A1=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E7=B1=BB=E6=9B=B4=E5=90=8D,=E6=96=B9=E4=BE=BF?= =?UTF-8?q?=E5=8C=BA=E5=88=86=E5=8D=95=E6=9C=BA=E5=92=8C=E5=BE=AE=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...temApplication.java => JeecgSystemCloudApplication.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/{JeecgSystemApplication.java => JeecgSystemCloudApplication.java} (91%) diff --git a/jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java b/jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemCloudApplication.java similarity index 91% rename from jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java rename to jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemCloudApplication.java index c6250dd..19fcca8 100644 --- a/jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java +++ b/jeecg-boot/jeecg-cloud-module/jeecg-cloud-system-start/src/main/java/org/jeecg/JeecgSystemCloudApplication.java @@ -20,15 +20,15 @@ import java.net.UnknownHostException; @Slf4j @SpringBootApplication @EnableFeignClients(basePackages = {"org.jeecg"}) -public class JeecgSystemApplication extends SpringBootServletInitializer { +public class JeecgSystemCloudApplication extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { - return application.sources(JeecgSystemApplication.class); + return application.sources(JeecgSystemCloudApplication.class); } public static void main(String[] args) throws UnknownHostException { - ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemApplication.class, args); + ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemCloudApplication.class, args); Environment env = application.getEnvironment(); String ip = InetAddress.getLocalHost().getHostAddress(); String port = env.getProperty("server.port"); -- GitLab