浏览代码

场景中心 test

by su 3 年之前
父节点
当前提交
c2e13121b3
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      4dkankan-center-scene/src/main/java/com/fdkankan/SceneApplication.java

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

@@ -1,4 +1,4 @@
-package com.fdkankan;
+package com.fdkankan.scene;
 
 import org.mybatis.spring.annotation.MapperScan;
 import org.springframework.boot.SpringApplication;
@@ -9,11 +9,10 @@ import org.springframework.context.annotation.ComponentScan;
 import org.springframework.scheduling.annotation.EnableScheduling;
 
 @SpringBootApplication
-@EnableFeignClients
-//("com.fdkankan.*.api.feign")
+@EnableFeignClients("com.fdkankan.*.api.feign")
 @EnableDiscoveryClient
 @EnableScheduling
-//@ComponentScan("*")
+@ComponentScan("*")
 @MapperScan("com.fdkankan.**.mapper")
 public class SceneApplication {