摘要: import com.alibaba.fastjson.JSONObject; Object,List<Object>转JsonStrString jsonString = JSONObject.toJSONString(object); JsonStr转JSONObjectJSONObject j 阅读全文
posted @ 2021-08-23 18:14 WishYouWell 阅读(496) 评论(0) 推荐(0)
摘要: @Scheduled是Spring框架的定时任务实现。Spring Boot项目启动类上添加@EnableScheduling注解,使@Scheduled生效,开启定时任务: 然后就是定义任务类,用@Scheduled配置具体的定时规则 @Scheduled参数: @Scheduled(fixedR 阅读全文
posted @ 2021-08-23 16:35 WishYouWell 阅读(747) 评论(0) 推荐(0)