Issue Background:
Service A calls Service B’s OpenFeign interface, the interface call is successful, but there is abnormal log output in the console.
Exception:
org.springframework.web.servlet.resource.NoResourceFoundException: No static resource /damageClaimForm/damageClaimForm/formExport
Reason of this problem:
the return value of Service B’s OpenFeign interface must be json,and the code is formdata.
the way of solving the problem:
1、modify @Controller to @RestController
2、add @ResponseBody on method of interface