|
@@ -1,17 +1,21 @@
|
|
|
-package com.fdkankan;
|
|
|
+package com.fdkankan.platform;
|
|
|
|
|
|
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
|
|
|
@EnableDiscoveryClient
|
|
|
@EnableFeignClients("com.fdkankan.*.api.feign")
|
|
|
+@EnableScheduling
|
|
|
+@ComponentScan(basePackages = {"com.fdkankan.*"})
|
|
|
@MapperScan("com.fdkankan.**.mapper")
|
|
|
-public class PlatformApplication {
|
|
|
+public class PlatformApplication {
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
SpringApplication.run(PlatformApplication.class, args);
|