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