衡水做wap网站的公司,网站搭建平台源码,昆明做网站的公司,wordpress 代码 转义最近在尝试Jeecg低代码开发#xff0c;但是碰到了超级多的问题#xff0c;不过总归是成功运行起来了。
下面说说碰到的最后一个配置问题#xff1a;连接redis失败
Error starting ApplicationContext.
To display the conditions report re-run your application with deb…最近在尝试Jeecg低代码开发但是碰到了超级多的问题不过总归是成功运行起来了。
下面说说碰到的最后一个配置问题连接redis失败
Error starting ApplicationContext.
To display the conditions report re-run your application with debug enabled.
2024-05-21 14:03:40.285
[main] ERROR org.springframework.boot.
SpringApplication:818 - Application run failed
我把完整的输出日志喂给GPTGPT帮我分析出问题如下
应用在启动时无法连接到Redis导致redisContainer bean启动失败。错误的主要原因是无法连接到127.0.0.1:6379并且日志中提到了ERR Client sent AUTH, but no password is set表明客户端发送了AUTH命令但未设置密码。
于是我马上找到对应的配置文件 application-dev.yml 发现如下配置信息 我把 password: 123456这一行注释掉打开前端再次运行后端项目。
此时问题已经解决后台成功运行。