现场服务可能会出现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 许可协议。转载请注明出处!