园区定时数据上传
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
483 B

9 months ago
package com.hxjt.dataupload;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
9 months ago
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
9 months ago
@SpringBootApplication
//@EnableScheduling
9 months ago
@EnableAsync
9 months ago
public class DataUploadApplication {
public static void main(String[] args) {
SpringApplication.run(DataUploadApplication.class, args);
}
}