24 lines
583 B
Java
24 lines
583 B
Java
package com.youlai.boot;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
/**
|
|
* 应用启动类
|
|
*
|
|
* @author Ray
|
|
* @since 0.0.1
|
|
*/
|
|
@SpringBootApplication
|
|
@ConfigurationPropertiesScan
|
|
@EnableScheduling
|
|
public class YouLaiBootApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(YouLaiBootApplication.class, args);
|
|
}
|
|
|
|
}
|