luoyb
2021-02-25 837dd00afec9b64d53d0aec1e6418b27a2937164
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);
    }
}