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