编辑
2024-04-25
学习记录
00
请注意,本文编写于 343 天前,最后修改于 343 天前,其中某些信息可能已经过时。

目录

原因
代码

原因

现场服务可能会出现Redis服务异常的问题,每次使用redis之前都需要对redis进行连通性判断

代码

java
//判断redis是否可用 public boolean isPing(){ try { RedisConnection connection = redisTemplate.getConnectionFactory().getConnection(); String response = connection.ping(); return "PONG".equals(response); } catch (Exception e) { log.error(e.getMessage) return false; } }

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!