From d6feeef7b55a7bcf35e14311ddd1f59f52fa44a3 Mon Sep 17 00:00:00 2001 From: zhangdaiscott Date: Mon, 25 Jan 2021 12:32:25 +0800 Subject: [PATCH] =?UTF-8?q?Cloud=20demo=20=E5=91=BD=E5=90=8D=E8=AE=A9?= =?UTF-8?q?=E4=BA=BA=E8=AF=AF=E8=A7=A3=EF=BC=8C=E6=9B=B4=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/org/jeecg/JeecgDemoApplication.java | 14 -------------- .../java/org/jeecg/JeecgDemoCloudApplication.java | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoApplication.java create mode 100644 jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoCloudApplication.java diff --git a/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoApplication.java b/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoApplication.java deleted file mode 100644 index fe8cd8f..0000000 --- a/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoApplication.java +++ /dev/null @@ -1,14 +0,0 @@ -//package org.jeecg; -// -//import org.springframework.boot.SpringApplication; -//import org.springframework.boot.autoconfigure.SpringBootApplication; -//import org.springframework.cloud.openfeign.EnableFeignClients; -// -//@SpringBootApplication -//@EnableFeignClients -//public class JeecgDemoApplication { -// -// public static void main(String[] args) { -// SpringApplication.run(JeecgDemoApplication.class, args); -// } -//} diff --git a/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoCloudApplication.java b/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoCloudApplication.java new file mode 100644 index 0000000..e6e08c0 --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-demo/src/main/java/org/jeecg/JeecgDemoCloudApplication.java @@ -0,0 +1,14 @@ +package org.jeecg; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cloud.openfeign.EnableFeignClients; + +@SpringBootApplication +@EnableFeignClients +public class JeecgDemoCloudApplication { + + public static void main(String[] args) { + SpringApplication.run(JeecgDemoCloudApplication.class, args); + } +} -- GitLab