使用IDEA启动springboot项目苍穹外卖后台项目 sky-take-out ,测试“菜品批量删除”接口时,能够正常完成操作,但是服务器始终显示下面错误信息:
2024-05-03 20:54:24.134 ERROR 24360 --- [nio-8181-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to x.x.x.x/<unresolved>:xxxx] with root cause
究其原因,很明显是 Unable to connect to Redis 错误。解决办法有两种
(1)按照“苍穹外卖”视频教程中 Redis 相关内容,在服务器上安装和启动 Redis 服务
(2)如果项目并不需要使用 Redis 组件,可以在苍穹外卖后台项目中删除所有 Redis 相关的组件和代码
本人的二次开发项目采用第二种方式解决问题
标签:exception,springboot,Redis,Unable,connect,外卖,苍穹 From: https://www.cnblogs.com/ybmj/p/18173623