by su пре 3 година
родитељ
комит
092fe1f27b

+ 1 - 1
4dkankan-center-modeling/src/main/java/com/fdkankan/modeling/ModelingApplication.java

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.ComponentScan;
 
 @SpringBootApplication
 @EnableDiscoveryClient
-@EnableFeignClients
+@EnableFeignClients("com.fdkankan.*.api.feign")
 @ComponentScan("*")
 public class ModelingApplication {
 

+ 4 - 2
4dkankan-center-scene/src/main/java/com/fdkankan/SceneApplication.java

@@ -1,16 +1,18 @@
-package com.fdkankan;
+package com.fdkankan.scene;
 
 import org.mybatis.spring.annotation.MapperScan;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
 import org.springframework.cloud.openfeign.EnableFeignClients;
+import org.springframework.context.annotation.ComponentScan;
 import org.springframework.scheduling.annotation.EnableScheduling;
 
 @SpringBootApplication
-@EnableFeignClients
+@EnableFeignClients("com.fdkankan.*.api.feign")
 @EnableDiscoveryClient
 @EnableScheduling
+@ComponentScan("*")
 @MapperScan("com.fdkankan.**.mapper")
 public class SceneApplication {