1
1 天以前 0cb07d83d9e1c2f0478ba422a557bd21b02781a8
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.vincent.rsf.schedule;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
 
@SpringBootApplication
@EnableScheduling
public class ScheduleBoot {
    public static void main(String[] args) {
        SpringApplication.run(ScheduleBoot.class, args);
    }
}