报错
苡咩
这个作者很懒,什么都没留下…
展开
-
【React】eslint版本错误:a different version of eslint was detected higher up in the tree
eslint版本冲突报错:a different version of eslint was detected higher up in the tree原创 2022-06-13 17:31:55 · 519 阅读 · 1 评论 -
【Docker】【MySQL】MySQL一直在重启,且一直重启失败
查看错误原因:docker logs 容器idInnoDB崩溃修复出错删除/var/lib/mysql目录下的ib_logfile0和ib_logfile1重新启动就可以了rm -rf ib_logfile0rm -rf ib_logfile1详细分析MySQL事务日志(redo log和undo log) - 骏马金龙 - 博客园 (cnblogs.com)(43条消息) MLOG_CHECKPOINT缺失下紧急数据恢复_Enmotech的博客-CSDN博客原创 2022-02-26 11:34:03 · 5455 阅读 · 0 评论 -
【SpringBoot】谷粒商城报错解决:P91 远程调用报错超时:java.net.SocketTimeoutException: Read timed out
解决:在商品配置文件打开feign的hystrix,设置远程调用服务的超时时间feign: hystrix: enabled: true client: config: gulimall-coupon: connectTimeout: 5000 readTimeout: 5000原创 2022-02-07 19:40:35 · 1057 阅读 · 1 评论 -
【SpringBoot】谷粒商城报错解决:P84 pubsub、publish报错
(参考评论区)1、npm install --save pubsub-js2、在src下的main.js中引用:① import PubSub from ‘pubsub-js’② Vue.prototype.PubSub = PubSub原创 2022-02-07 19:37:55 · 1016 阅读 · 0 评论 -
【SpringBoot】SpringBoot启动报错:Error creating bean with name ‘configDataContextRefresher‘
检查是否存在依赖版本不兼容的问题博主出错的原因在于SpringCloud和Nacos版本不对应,修改版本即可贴一个详细报错信息:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configDataContextRefresher' defined in class path resource [org/springframework/cloud/autoconfigu原创 2022-02-07 19:33:59 · 2723 阅读 · 0 评论 -
【SpringBoot】谷粒商城报错解决:P22 OpenFeign报错 No Feign Client for loadBalancing defined.
报错:No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalancing?因为高版本OpenFeign不再支持Ribbon了,最好的解决方法就是降版本。版本参考:Springboot:2.2.6.RELEASESpringCloud:Hoxton.SR8SpringCloud Alibaba:2.2.6.RELEASEOpenFeign:2.2.原创 2022-02-07 19:29:56 · 749 阅读 · 3 评论 -
【SpringBoot】谷粒商城报错解决:P18 Longblob找不到类型
将Longblob改成byte[]private byte[] rollbackInfo;原创 2022-02-07 19:27:38 · 952 阅读 · 0 评论 -
【SpringBoot】报错:java.lang.NoClassDefFoundError: org/springframework/boot/ApplicationContextFactory
学习Spring实战的时候运行测试报出了这个错误,后来发现可能是springboot版本太高了,最后按书上把spring boot版本回退到2.0.4.RELESE解决了问题。<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <ve原创 2021-01-03 19:30:37 · 2063 阅读 · 0 评论