|
@@ -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 {
|
|
|
|