|
|
|
@ -219,7 +219,7 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
|
|
|
|
|
landListeds.forEach(landListed -> { |
|
|
|
|
list.add(entityToList(landListed)); |
|
|
|
|
}); |
|
|
|
|
redisUtil.setCacheObject("/exportAllLandListExcel",list,15, TimeUnit.MINUTES); |
|
|
|
|
redisUtil.setCacheObject("/exportAllLandListExcel",list,63, TimeUnit.MINUTES); |
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -227,7 +227,7 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
|
|
|
|
|
* 定时查询已挂出导出全部数据 |
|
|
|
|
*/ |
|
|
|
|
@Async |
|
|
|
|
@Scheduled(cron = "0 0/10 * * * ?") // 10分执行一次 “0 0 12 ?” 每天12时执行一次
|
|
|
|
|
@Scheduled(cron = "0 0/59 * * * ?") // 10分执行一次 “0 0 12 ?” 每天12时执行一次
|
|
|
|
|
public void selectCollection() throws IOException { |
|
|
|
|
log.info("定时查询已挂出导出全部数据"+System.currentTimeMillis()); |
|
|
|
|
List<LandListed> landListeds = list(); |
|
|
|
@ -236,7 +236,7 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
|
|
|
|
|
landListeds.forEach(landListed -> { |
|
|
|
|
list.add(entityToList(landListed)); |
|
|
|
|
}); |
|
|
|
|
redisUtil.setCacheObject("/exportAllLandListExcel",list,15, TimeUnit.MINUTES);//全部数据类型
|
|
|
|
|
redisUtil.setCacheObject("/exportAllLandListExcel",list,63, TimeUnit.MINUTES);//全部数据类型
|
|
|
|
|
|
|
|
|
|
// InputStream resourceAsStream = LandListedController.class.getClassLoader().getResourceAsStream("templates/excel/exportLandList.xlsx");
|
|
|
|
|
// // 读取excel模板
|
|
|
|
|