SpringCloud Feign 전송 대상 파라미터 호출 실패 문제 해결
2857 단어 SpringCloudFeign매개 변수대상
GET 요청 방식 은 지원 되 지 않 습 니 다
feign:
httpclient:
enabled: true
pom.xml
<!-- Apache HttpClient Feign httpclient -->
<dependency>
<groupId>com.netflix.feign</groupId>
<artifactId>feign-httpclient</artifactId>
<version>8.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.3</version>
</dependency>
feignClient:
@FeignClient(name = "hd-ucenter-server", fallback = SysTestServerFallbackImpl.class)
public interface SysTestServer {
@RequestMapping(value = "/test/test", method = RequestMethod.POST, consumes = "application/json")
Object test(CurrentUser currentUser);
}
RestController:
@RestController
@PostMapping("/test")
public class TestController {
@RequestMapping(value = "/test")
public Object test(@RequestBody CurrentUser currentUser) {
System.out.printf(" test
");
return currentUser;
}
}
질문클 라 우 드 내부 에서 이상 을 던 져 처리 하지 않 기 때문에 Feign 은 spring 기본 포장 이상 결 과 를 다음 과 같이 가 져 옵 니 다.
{
"timestamp": "2017-12-27 15:01:53",
"status": 500,
"error": "Internal Server Error",
"exception": "com.keruyun.loyalty.commons.master.exception.BusinessException",
"message": "Request processing failed; nested exception is {\"code\":1000, \"message\":\"test Exception\"}",
"path": "/coupon/cloud/commercial/8469"
}
사용자 정의 이상 처리 에서 상태 되 돌리 기
@Slf4j
@RestControllerAdvice
public class GlobalExceptionHandlerResolver {
//
@ExceptionHandler(InternalApiException.class)
public ResultResp<?> handleGlobalException(HttpServletResponse response, InternalApiException internalApiException) {
ResultResp<?> resultResp = internalApiException.getResultResp();
log.error(internalApiException.getMessage(), internalApiException);
response.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());// 500
response.setContentType(MediaType.APPLICATION_JSON_UTF8.toString());
return resultResp;
}
}
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SpringCloud OAuth2 + JWT 인증 인증(一) 인증 서버Spring Cloud oAuth2(1) 라이센스 서버 구축 및 액세스 Spring Cloud oAuth2(2) 리소스 서버 구축 및 테스트 SpringCloud OAuth2 + JWT 인증 인증(一) 인증 서버 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.