我需要帮助!
我尝试使用ProxyExchange重定向多部分请求,但没有成功。
以前有人做过吗?
提前谢谢你
@PostMapping("/service")
public ResponseEntity<byte[]> proxyPost(ProxyExchange<byte[]> proxy, @RequestHeader("authorization") String authorizationHeader,@RequestPart("file") MultipartFile file) throws Exception {
proxy.header("Authorization-getway",authorizationHeader);
return proxy.uri(dzOptServiceUri.toString() + "/api/service/").post(response -> {
return ResponseEntity.status(response.getStatusCode()) //
.headers(response.getHeaders()) //
.header("Authorization-getway", authorizationHeader) //
.body(response.getBody());
});
}
字符串
1条答案
按热度按时间ttvkxqim1#
我找到了一个解决方案,即使我不知道它是否是最好的解决方案。
字符串