解决:org.springframework.web.client.HttpClientErrorException: 405 null at org.springframework.web.clie

org.springframework.web.client.HttpClientErrorException: 405 null at org.springframework.web.client

排查了下原因
造成错误的原因:controller层请求 是标识 RequestMethod.POST的请求

@RequestMapping(value = "/downloadFile", method = RequestMethod.POST)
    public void downloadFile(HttpServletRequest request, HttpServletResponse response,
                             @RequestParam(value = "service_name", required = false) String serviceName,
                             @RequestParam("operator_code") String operatorCode)
            throws UnsupportedEncodingException {

然而在执行:内部发起请求的时候

            ResponseEntity<String> res = restTemplate.postForEntity(fileTransferBO.getFlmServerAddress(), ExcelUtils.createFileHttpParam(fileTransferBO), String.class);

请求所调用的接口方式是:method = RequestMethod.GET

@RequestMapping(value = "/getFileInfo", method = RequestMethod.GET)
    @ResponseBody
    public ApiResult getFileInfo(@RequestBody() FileTransferBO fileTransferBO) {

所以报这个错误。
解决:
这里把内部所调用的请求方式和controller层的调成一致即可解决该问题。

@RequestMapping(value = "/getFileInfo", method = RequestMethod.POST)
    @ResponseBody
    public ApiResult getFileInfo(@RequestBody() FileTransferBO fileTransferBO) {
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值