1
zhang
4 天以前 e5e76412f1a20e8aed95614cbd7bf2b638cda2cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.acs.hex;
 
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;
 
@EnableScheduling
@ComponentScan(basePackages = {"com.zy.component", "com.zy.acs"})
@SpringBootApplication
public class HexApplication extends SpringBootServletInitializer {
 
    public static void main(String[] args) {
        SpringApplication.run(HexApplication.class, args);
    }
 
 
}