问题解决
AWen_X
这个作者很懒,什么都没留下…
展开
-
openFeign接口文件上传报错
OpenFeign 默认并不支持。原创 2024-10-23 11:37:47 · 159 阅读 · 1 评论 -
MybatisPlus:使用了SQL的保留字(关键字)
解决方法: 字段使用``符号包裹字段:表:原创 2020-10-22 15:28:35 · 971 阅读 · 2 评论 -
在Springboot下使用Netty并引入redis后@Scheduled定时任务抛NoSuchMethodError异常
原因:Springboot版本为2.1.3.RELEASE, Netty版本为4.1.50.Final, 引入spring-boot-starter-data-redis依赖后, 因为其中也有Netty依赖, 但是版本只有4.1.33, 因而版本冲突导致异常解决方法:1. 将Springboot版本改为2.2.6.RELEASE2. 或将Netty版本改为4.1.33.Final<parent> <groupId>org.springframework.boo.原创 2020-10-10 09:43:20 · 551 阅读 · 0 评论 -
上传文件提示The temporary upload location [/tmp/tomcat.xxxx...问题解决方案
异常描述Caused by: java.io.IOException: The temporary upload location [/tmp/tomcat.xxx.xxx/work/Tomcat/localhost/ROOT] is not valid原因spring boot应用服务启动的时候,会在tmp目录下生成一个关于tomcat的文件目录,上传的文件先要转换成临时文件保存在这个文件夹下面。由于临时tmp目录下的文件,在长时间(10天)没有使用的情况下,就会被系统机制自动删除掉,所以长时间没原创 2020-07-01 14:41:37 · 10777 阅读 · 0 评论 -
关闭防火墙后,启动容器报错: docker0: iptables: No chain/target/match by that name
在关闭防火墙后, 启动容器报以下错误:Error response from daemon: Cannot restart container 41d2e371d5c5: driver failed programming external connectivity on endpoint sentinel-26379 (1be5e5aa55e555d192adfcd90b0ad395683afce74087dc9d21933331d41051ea): (iptables failed: iptable原创 2020-05-28 16:18:36 · 509 阅读 · 0 评论 -
Spring Cloud通过Feign请求返回值LocalDateTime异常
问题描述:通过openFeign调用接口, 请求能达到服务, 但是返回值中含有LocalDateTime类型参数, 报以下错误:feign.codec.DecodeException: Type definition error: [simple type, class java.time.LocalDateTime]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot co原创 2020-05-20 16:16:59 · 3067 阅读 · 1 评论 -
SpringCloudGateway遇到的坑
1. 启动报错: No qualifying bean of type 'org.springframework.core.convert.ConversionService原因:gateway采用的是webflux, 如果引入了含有mvc的依赖就会报错, 比如: swagger2, spring-boot-starter-web等解决方法:排除相关依赖<exclusions>...原创 2020-05-06 20:19:21 · 3762 阅读 · 0 评论 -
@RequestMapping和@FeignClient放在同一个接口上遇到的坑
@RequestMapping("/user/admin")@FeignClient(ServiceNameConstants.USER_ADMIN_SERVICE)public interface IUserAdminAuthApi { ...}问题:当一个接口上同时拥有@RequestMapping和@FeignClient注解时, 请求会报异常解决方法:把@RequestM...原创 2020-05-06 20:03:43 · 5853 阅读 · 1 评论 -
项目一启动就发生两次FGC原因
原因:JDK8未指定-XX:MetaspaceSize大小, 默认情况下很小,因此已启动就触发了CMS进行扩容,一次CMS至少会发生两次FGC, 因此加上在JVM参数上-XX:MetaspaceSize=256M就可以解决...原创 2019-12-06 18:21:06 · 660 阅读 · 0 评论