org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is org.springframework.data.redis.connection.PoolException: Could not get a resource from the pool; nested exce
时间: 2023-11-10 20:58:00 浏览: 306
测试spring中的org.springframework.beans.factory.InitializingBean
ption is redis.clients.jedis.exceptions.JedisConnectionException: Could not connect to Redis at localhost:6379: Connection refused.
这个错误的原因是无法连接Redis数据库。在你的应用程序中,可能有一个名为'sysConfigServiceImpl'的bean,它在初始化时需要连接Redis。但是,它无法连接到Redis服务器,并且由于这个原因而抛出异常。
可能的原因是Redis服务器没有运行,或者运行在错误的端口上。请确保Redis服务器正在运行,并且在应用程序中使用的端口与Redis服务器上的端口匹配。您还可以检查防火墙设置是否正确,以允许应用程序连接到Redis服务器。
阅读全文