@ClassName LikeTask @Description 点赞的定时任务 @Author luojiarui @Date 2023/4/3 22:10 @Version 1.0
| 16 | * @Version 1.0 |
| 17 | **/ |
| 18 | @Slf4j |
| 19 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected