1
zhang
18 小时以前 6c229bdd8c538ef4990a6c54ecfc081a7e95c923
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.acs.hex;
 
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
 
@ComponentScan(basePackages = {"com.zy.component", "com.zy.acs"})
@SpringBootApplication
public class HexApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(HexApplication.class, args);
    }
 
}