
项目报错-bug
开发过程中,出现的各种bug总结,
分析产生原因和给出解决方案
ladymorgana
这个作者很懒,什么都没留下…
展开
-
【bug】mongodb中文乱码问题
设备上报需要内容用 UTF-8 格式。控制台打印设备上报内容--乱码。mongodb 字段中文乱码。原创 2022-11-22 09:50:12 · 704 阅读 · 0 评论 -
【bug】org.springframework.data.mongodb.UncategorizedMongoDbException: Exception authenticating MongoC
navicat 创建monogdb库 名称为 hzdspring boot 连接hzd 报错报错:;原创 2022-11-16 18:18:21 · 1057 阅读 · 0 评论 -
【mysql-报错】错误代码1064
字符串(varchar)类型字段的默认值,需要 '' ,括起来。navicat设置字段默认值报错。1064错误大部分只需要 '' ,括起来。sql语句中词和mysql的关键字冲突。原创 2022-09-26 11:26:19 · 8331 阅读 · 0 评论 -
【日常-bug】文件上传oss报错-跨域- ‘Access-Control-Allow-Origin
Access to XMLHttpRequest at 'https://ip:44300/base/file/image/uplode' from origin 'http://ip:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.原创 2022-09-20 17:18:48 · 1242 阅读 · 0 评论 -
【Bug - lombok】java: You aren‘t using a compiler supported by lombok, so lombok will not work and ...
项目场景:SpringBoot + MyBatis + postgresql问题描述:使用Lombok一直正常,突然启动报错能够get set方法,但是不能通过编译,报错如下java: You aren't using a compiler supported by lombok, so lombok will not work and has been disabled.Your processor is: com.sun.proxy.$Proxy26Lombok s...原创 2021-12-16 14:52:21 · 7374 阅读 · 4 评论 -
【bug - postgresql】PSQLException: ERROR: column reference “id“ is ambiguous
项目场景:Spring cloud + Mybatis-plus +postgresql问题描述:关联查询报错PSQLException: ERROR: column reference "id" is ambiguous原因分析:关联查询时两个表均有id解决方案:设置表别名 a,b若返回对象只需要取a的id,select a.id 即可同理 PSQLException: ERROR:...原创 2021-12-14 15:53:04 · 14073 阅读 · 0 评论 -
[IDEA] XML文件报错:URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs
场景spring cloud 项目问题 maven项目xml 文件报红原因统一资源标识符没有注册解决方法忽略url 即可file-->settings...-->languages & frameworks -->Schemas and DTDs...原创 2021-11-23 19:42:53 · 759 阅读 · 0 评论 -
[小米笔记本Pro 15] 解决屏幕自动变暗的问题
问题:笔记本经常自动变暗产生原因:inter显卡自动节能模式导致解决方法: 搜索框--搜 英特尔 >选择 英特尔显卡控制中心 > 系统> 功率 > 关闭自动节能...原创 2021-11-17 11:22:32 · 4440 阅读 · 1 评论 -
[BUG-postgresql] org.postgresql.util.PSQLException: ERROR: syntax error at or near “current_date“
环境:spring cloud + Mybatis-plus + postgresql场景:表插时提示org.postgresql.util.PSQLException: ERROR: syntax error at or near "current_date"产生原因:current_date() 为 sql 的方法,current_date为方法名解决方法:current_date改为create_d...原创 2021-11-15 11:33:37 · 1528 阅读 · 0 评论 -
【navicate 15】SSL SYSCALL error: Software caused connection abort (0x00002745/10053)
问题: 执行查询语句是出现 SSL SYSCALL error: Software caused connection abort (0x00002745/10053)原因:navicate 15 失去连接解决方法: 关闭数据重连,并再次新建查询原创 2021-10-29 16:02:00 · 7659 阅读 · 0 评论 -
Connection is read-only. Queries leading to data modification are not allowed 解决方法
错误描述调用save()方法报错 Connection is read-only. Queries leading to data modification are not allowed产生原因让所有的方法都加入事务管理,类前面加了注解@Transactional(readOnly = true)设置为只读的事务,但是增删改就会报错Connection is read-onl...原创 2019-09-18 16:25:36 · 43311 阅读 · 4 评论 -
读书笔记 --- 史上最简单的SpringCloud教程 | 第四篇:断路器(Hystrix)(Finchley版本)
读书笔记 -- Hystrix史上最简单的SpringCloud教程 | 第四篇:断路器(Hystrix)(Finchley版本)点击进入 熔断器作用:防止“雪崩”效应。 雪崩效应:服务与服务之间的依赖性,故障会传播,会对整个微服务系统造成灾难性的严重后果,这就是服务故障的“雪崩”效应。 总结Eureka + Ribbon + RestTemplate+ Hystr...原创 2019-08-14 14:36:15 · 252 阅读 · 0 评论 -
[IDEA] 异常 Configuration is still incorrect. Do you want to edit it again? Error: module not specifie
在Idea打开项目出现,Configuration is still incorrect. Do you want to edit it again?的错误提示。点Edit,出现Error: module not specifie问题:产生原因:项目模块没指定解决方法...原创 2019-05-17 14:47:28 · 69691 阅读 · 5 评论 -
[maven] 异常 Element 'dependency' cannot have character [children], because the type's content type is
IDEA pom.xml 文件报错Element 'dependency' cannot have character [children], because the type's content type is element-on图片效果原因:引入<dependency>...</dependency>格式错误解决方法:1....原创 2019-04-15 10:34:10 · 3762 阅读 · 0 评论