Răsfoiți Sursa

更新证件照接口缓存过期时间

FanQun 2 ani în urmă
părinte
comite
a327291fa2

+ 1 - 1
src/main/java/com/rshy/project/hy/server/ItfwServer.java

@@ -792,7 +792,7 @@ public class ItfwServer {
 
         byte[] bytes = HttpRequest.get(pctzjzpResultDTO.getZjzUrl()).timeout(200).execute().bodyBytes();
         pctzjzpResultDTO.setPhoto(Base64.encode(bytes));
-        stringRedisTemplate.opsForValue().set(cacheKey, JSON.toJSONString(pctzjzpResultDTO), DateUtil.endOfDay(DateUtil.date()).getTime() - DateUtil.date().getTime(), TimeUnit.MILLISECONDS);
+        stringRedisTemplate.opsForValue().set(cacheKey, JSON.toJSONString(pctzjzpResultDTO));//DateUtil.endOfDay(DateUtil.date()).getTime() - DateUtil.date().getTime(), TimeUnit.MILLISECONDS);
         return pctzjzpResultDTO;
     }