最近在尝试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
我把完整的输出日志喂给GPT,GPT帮我分析出问题如下:
应用在启动时无法连接到Redis,导致redisContainer
bean启动失败。错误的主要原因是无法连接到127.0.0.1:6379
,并且日志中提到了"ERR Client sent AUTH, but no password is set",表明客户端发送了AUTH命令,但未设置密码。
于是,我马上找到对应的配置文件 application-dev.yml ,发现如下配置信息:
我把 password: '123456'这一行注释掉,打开前端,再次运行后端项目。
此时,问题已经解决,后台成功运行。