MCPcopy Create free account
hub / github.com/Jarrettluo/all-docs / LikeTask

Class LikeTask

src/main/java/com/jiaruiblog/task/like/LikeTask.java:18–29  ·  view source on GitHub ↗

@ClassName LikeTask @Description 点赞的定时任务 @Author luojiarui @Date 2023/4/3 22:10 @Version 1.0

Source from the content-addressed store, hash-verified

16 * @Version 1.0
17 **/
18@Slf4j
19public class LikeTask extends QuartzJobBean {
20
21 @Resource
22 LikeService likeService;
23
24 @Override
25 protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException {
26 //将 Redis 里的点赞信息同步到数据库里
27 likeService.transLikedFromRedis2DB();
28 }
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected