parent
fe073568e1
commit
a9f2a69f93
@ -0,0 +1,20 @@
|
|||||||
|
package com.sky;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.cache.annotation.EnableCaching;
|
||||||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||||
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||||||
|
|
||||||
|
@EnableCaching //开启缓存注解功能
|
||||||
|
@SpringBootApplication
|
||||||
|
@EnableTransactionManagement //开启注解方式的事务管理
|
||||||
|
@Slf4j
|
||||||
|
@EnableScheduling //开启任务调度
|
||||||
|
public class SkyApplication {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(SkyApplication.class, args);
|
||||||
|
log.info("server started");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue