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 fe8cd8f0..00000000 --- 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 00000000..e6e08c07 --- /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); + } +}