package com.vincent.rsf.server; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.context.annotation.ComponentScan; @SpringBootApplication @ComponentScan(basePackages = {"com.vincent.rsf.server", "com.vincent.rsf.common"}) @EnableFeignClients(basePackages = "com.vincent.rsf.server.api.feign") public class ServerBoot { public static void main(String[] args) { SpringApplication.run(ServerBoot.class, args); } }