Browse Source

导出功能

feature/v.2.0.0
caoyizhong 3 years ago
parent
commit
f87a3ac238
  1. 6
      air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java

6
air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java

@ -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模板

Loading…
Cancel
Save