问题1:调用get接口报错“不支持POST请求方法,支持以下GET”
服务端Controller接口代码
@GetMapping("/personAuthQueryHikDeviceIdList")
public List<String> personAuthQueryHikDeviceIdList(AsSysResidentDTO sysResident) {
return hikEmployeeService.personAuthQueryHikDeviceIdList(sysResident);
}
客户端Service接口代码
@GetMapping("/personAuthQueryHikDeviceIdList")
List<String> personAuthQueryHikDeviceIdList(AsSysResidentDTO sysResident);
接口均定义为get请求,但是报错:不支持POST请求方法,支持以下GET。
出错原因为openfeign调用get接口时不支持对象类型传参,仅支持基础类型传参。
解决方法1:参数添加@SpringQueryMap注解
服务端Controller接口代码
@GetMapping("/personAuthQueryHikDeviceIdList")
public List<String> personAuthQueryHikDeviceIdList(@SpringQueryMap AsSysResidentDTO sysResident) {
return hikEmployeeService.personAuthQueryHikDeviceIdList(sysResident);
}
客户端Service接口代码
@GetMapping("/personAuthQueryHikDeviceIdList")
List<String> personAuthQueryHikDeviceIdList(@SpringQueryMap AsSysResidentDTO sysResident);
解决方法2:使用post请求方式,参数添加@RequestBody注解
问题2:调用get接口传对象参数时,对象中的Date类型接参错误
实测使用get请求加@SpringQueryMap注解传输对象参数时,对象含有Date类型属性时,接参会有14个小时的时差,月份可能也会被+1。
解决方法:使用post请求方式,参数添加@RequestBody注解
对象中的Date属性添加注解,例:
/**创建日期*/
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date createTime;
实测如果Date属性不加注解windows系统本地也能正常接参,但是因为没有设置时区不确定linux下是否会出问题,建议加注解!
问题3:调用post接口服务端报错“Content type 'application/json;charset=UTF-8' not supported”
控制台报错信息
2023-01-09 11:21:58.330 [http-nio-7070-exec-1] ERROR o.jeecg.common.exception.JeecgBootExceptionHandler:82 - Content type 'application/json;charset=UTF-8' not supported
org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported
问题原因:接口参数类型为Map<Person, List<Device>>,应该是不支持使用对象作为Map的key进行传参。
解决方法:将参数结构进行调整,避免使用对象作为Map的key
问题4:接口报错“feign.FeignException$Unauthorized: [401 Unauthorized] during [GET] to ......”
这个问题是我将代码改为异步时产生的,去百度搜索大部分文章都是让加请求拦截器(RequestInterceptor),但是我已经加了,还是不好使。
问题原因:调用openfeign接口时,必须使用主线程调用,这样在访问其他服务时,拼装的请求会复制当前请求的token等信息,而我是异步调用的,拼装的请求时通过“(ServletRequestAttributes) RequestContextHolder.getRequestAttributes()”没有获取到当前请求的token等信息,导致登录认证失败
解决方法:暂时调整为主线程执行,后续会考虑使用其他方式实现异步效果,避免因openfeign调用导致请求处理报错
问题5:调用get接口报错“不支持POST请求方法,支持以下GET”
接口代码
@GetMapping("queryByDeviceId")
AsDeviceManageDTO queryByDeviceId(String hikDeviceId);
问题原因:实测是因为参数没有加注解导致的
解决方法:给参数添加 @RequestParam 注解