1
zhang
2026-03-31 24f6766a113090fb97f9dd399586b61a364702ae
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);
 
 
    }
}