chen.lin
11 小时以前 c81fc5e2a4f4153be2bb8602ed14a0743e6ecd29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
    }
 
}