SpringBoot
扛起拖把扫天下
这个作者很懒,什么都没留下…
展开
-
SpringBoot定时任务
最常用的一个定时任务采用springBoot注解的方式: 1.在启动类上添加 @EnableScheduling注解 2.创建定时类: @Component public class ScheduledService { Logger log = LoggerFactory.getLogger(getClass()); @Scheduled(cron = " 0 0 6 01...原创 2018-09-04 08:55:00 · 148 阅读 · 0 评论 -
springboot获取当前项目路径的地址
new ApplicationHome(this.getClass()).getSource().getParentFile().getParentFile().getPath()原创 2018-09-03 16:55:20 · 34654 阅读 · 5 评论