解决Redisson出现Failed to instantiate [org.redisson.api.RedissonClient]: Factory method 'create' threw exception; nested exception is java.lang.ArrayIndexOutOfBoundsException: 0的问题

时间:2023-03-08 16:05:06

一、背景

  最近项目中使用了redisson的哨兵模式来作为redis操作的客户端,然后一个意外出现了,启动报:Failed to instantiate [org.redisson.api.RedissonClient]: Factory method 'create' threw exception; nested exception is java.lang.ArrayIndexOutOfBoundsException: 0。具体错误如下:

解决Redisson出现Failed to instantiate [org.redisson.api.RedissonClient]: Factory method 'create' threw exception; nested exception is java.lang.ArrayIndexOutOfBoundsException: 0的问题

二、出现原因以及解决方式

  经过不懈的努力,最终定位到出现这个问题是因为配置redisson客户端的时候把redis的master的名称配错了,就出现了这个问题,把redis.master.name修改正确以后就完美解决这个问题了。因为我在网上没有搜索到解决办法,最后自己解决了就记录一下,希望可以帮到你!