feign.FeignException: status 500 reading AttamentClient#saveAttachment(LegAttachment); content: {"co

用B服务调用A服务报错,B服务控制台报错如下feign.FeignException: status 500 reading AttamentClient#saveAttachment(LegAttachment); content:
{“code”:500,“message”:“Server Internal Error”,“data”:null,“throwable”:null} 可参照:https://blog.csdn.net/Ryan_black/article/details/104663350

feign.FeignException: status 500 reading AttamentClient#saveAttachment(LegAttachment); content: {
后将传参转成json,取出来,用swagger单独调用A服务,保存附件信息可正常保存到数据库,没有问题。
feign.FeignException: status 500 reading AttamentClient#saveAttachment(LegAttachment); content: {
单独调用A服务好用,用B服务调用A服务不可用,我的问题到底出在什么地方?
从网上找了很多资料,按照网上的解决方法,检查我的程序,结果未能解决我的问题。
后来启动A本地服务,进行调试,发现A服务控制台报错如下图
feign.FeignException: status 500 reading AttamentClient#saveAttachment(LegAttachment); content: {
发现是事务的问题,后进行修改,问题解决。

你可能感兴趣的:(java)