MacBook使用docker方式部署Redis踩坑经历
问题:docker宿主机上SpringBoot项目连接docker中的Redis被拒绝 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 exception is io.lettuce.core.RedisConnectionException: Unable to connect to 127.0.0.1:6379 at org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) at org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) Caused
2023-07-16
预计阅读时间:1分钟
MacBook使用docker方式部署MySQL 8踩坑经历
问题:启动项目时报错Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'biz.XXL_JOB_QRTZ' doesn't exist 原因:MySQL大小写敏感配置 查看MySQL大小写敏感配置:show variables like '%case%' 如果区分大小写,则结果为: +------------------------+-------+ |
2023-07-16
预计阅读时间:1分钟
解决SpringBoot循环依赖
概念引入 循环依赖:是指两个或多个模块之间相互依赖,形成一个循环的依赖关系。当这种情况发生时,编译器无法确定哪个模块应该先被编译,导致编译错误或者程序运
2023-03-27
预计阅读时间:3分钟