springboot
隔壁的老司机
这个作者很懒,什么都没留下…
展开
-
mongoTemplate批量更新保存子文档集合
项目中遇到批量保存或者更新文档,使用mongotemplate的upsert来处理,发现会直接覆盖之前的子集,而不是按照自己的规则去追加,或者更新子集最后想到一个思路,记录一下List<DayAir> dayAirList = mergeList(currentTime, syncMinutes);if (!dayAirList.isEmpty()) { //按照唯一键查询出对应文档 dayAirList.forEach(air -> { ...原创 2021-01-27 15:42:13 · 3274 阅读 · 0 评论 -
springboot 读写properties文件
springboot 读写properties文件public static void writeProperties(String key, String value) { try { String path = getRootPath() + "/sync_mongo_40/"; File pathFile = new File(path); if (!pathFile.exists()) { pathFile.mkd.原创 2021-01-27 15:34:05 · 2288 阅读 · 0 评论