luoyb
2021-05-12 bfd4ded5aaf7fcead591435d504bea9105d2fd2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.server.generator;
 
import cc.mrbird.febs.common.security.starter.annotation.EnableFebsCloudResourceServer;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
 
/**
 * @author MrBird
 */
@SpringBootApplication
@EnableFebsCloudResourceServer
@MapperScan("cc.mrbird.febs.server.generator.mapper")
public class FebsServerGeneratorApplication {
 
    public static void main(String[] args) {
        new SpringApplicationBuilder(FebsServerGeneratorApplication.class)
                .web(WebApplicationType.SERVLET)
                .run(args);
    }
 
}