孔祥富
2021-03-08 4e52cb2253af9a22571c7d0c239ee283178d2fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.gateway;
 
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
 
/**
 * @author MrBird
 */
@SpringBootApplication
public class FebsGatewayApplication {
 
    public static void main(String[] args) {
        new SpringApplicationBuilder(FebsGatewayApplication.class)
                .web(WebApplicationType.REACTIVE)
                .run(args);
    }
}