关于feign注解调用服务端异常问题

对象传递异常一: 'Content-Type' cannot contain wildcard type '*'

处理方式:
请求头添加consumes = MediaType.APPLICATION_JSON_VALUE

@FeignClient("client")
public interface FocusService{
    /**
     * @param channel
     * @param page
     * @param userId
     * @return
     * @throws Exception
     */
    @RequestMapping(value="/crowd/v1/focus", method=RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_VALUE)
    public ApiResponse create (@RequestBody FocusCreate focusCondition);
关于feign注解调用服务端异常问题_第1张图片
微信公众号欢迎关注.jpg

你可能感兴趣的:(关于feign注解调用服务端异常问题)