chen.lin
23 小时以前 bd6e6e28a9c8c138b1c2bae2e18964162a8bbda8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.vincent.rsf.server;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
 
@SpringBootApplication
@ComponentScan(basePackages = {"com.vincent.rsf.server", "com.vincent.rsf.common"})
public class ServerBoot {
 
    public static void main(String[] args) {
        SpringApplication.run(ServerBoot.class, args);
    }
 
}