使用RestTemplate发送Http请求抛出异常:Exception in thread "main" org.springframework.web.client.RestClientException: Could not write request: no suitable HttpMessageConverter found for request type
原因:根据Http请求ContentType找到的HttpMessageConverter无法处理报文体数据导致。HttpMessageConverter作用是根据ContentType类型,只负责将报文体内容转换到请求参数中,转换之后就可以通过@RequestParam或request.getParameter获取,否则只能通过@RequestBody注解获取。
Http请求包括的内容如下:
报文体经常用到的情形是发送Post请求时,Post请求参数将作为报文体传递,所以Post请求参数的长度才没有限制。
HttpHeaders默认的ContentType为application/x-www-form-urlencoded,其中application/x-www-form-urlencoded是一种编码类型,当URL地址里包含非西欧字符的字符串时,系统会将这些字符转换成application/x-www-form-urlencoded字符串。表单里提交时也是如此,当包含非西欧字符的字符串时,系统也会将这些字符转换成application/x-www-form-urlencoded字符串。然而,在向服务器发送大量的文本、包含非ASCII字符的文本或二进制数据时这种编码方式效率很低。这个时候我们就要使用另一种编码类型“multipart/form-data”,比如在我们在做上传的时候,表单的enctype属性一般会设置成“multipart/form-data”。Browser端<form>表单的ENCTYPE属性值为multipart/form-data,它告诉我们传输的数据要用到多媒体传输协议,由于多媒体传输的都是大量的数据,所以规定上传文件必须是post方法。
为了能够将报文体转换到请求参数中,并且通过request.getParameter方法获取报文体中内容,将报文体内容设置为String,如果是实体类转换为String再传递。实例如下:
传递的实体类:
package com; public class IndexInfo { private String name ; private String content ; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public String toString() { return "name="+ name+"&content="+content; } }
Controller类和Main方法:
package com; import java.nio.charset.Charset; import java.util.Collections; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.client.RestTemplate; @Controller @RequestMapping("/test") public class TestController { @RequestMapping @ResponseBody public IndexInfo testMethod(IndexInfo indexInfo,@RequestBody String requestBody){ System.out.println("indexinfo name -> "+indexInfo.getName()+" ;content -> "+indexInfo.getContent()); System.out.println("request body -> "+requestBody); return indexInfo ; } public static void main(String[] args) { RestTemplate restTemplate = new RestTemplate() ; //请求的url String url = "http://localhost:8080/gisserver_jpa/test" ; //设置Http请求头和报文体 HttpHeaders httpHeaders = new HttpHeaders() ; //设置HTTP请求的请求头信息 httpHeaders.setContentType(MediaType.parseMediaType("application/x-www-form-urlencoded;charset=UTF-8")); //设置相应内容,相应内容将被转换为json格式返回 httpHeaders.setAcceptCharset(Collections.singletonList(Charset.forName("UTF-8"))); httpHeaders.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON)); //创建要传递的对象 IndexInfo indexInfo = new IndexInfo(); indexInfo.setName("0123456789"); indexInfo.setContent("new content"); //设置HttpEntity的Body类型为String,调用StringHttpMessageConverter转换报文体参数 HttpEntity<String> httpEntity = new HttpEntity(indexInfo.toString(),httpHeaders) ; //发送post请求,并将返回的实体类型设置的IndexInfo indexInfo = restTemplate.postForObject(url, httpEntity, IndexInfo.class) ; System.out.println(indexInfo.toString()); } }
相关推荐
"could not read symbols: Bad value" 问题解决方案 本文将详细介绍在 64 位 Linux 系统下出现的 "could not read symbols: Bad value" 问题,并提供解决方案。 问题描述 -------- 在 64 位 Linux 系统下编译 ...
然而,当出现"HttpMessageNotWritableException: Could not write JSON: Infinite recursion (StackOverflowError)"这样的错误时,意味着在序列化过程中遇到了无限递归的问题。这个问题通常是由于对象之间的引用循环...
1.120119 16:26:04 [Warning] IP address ‘192.168.1.10’ could not be resolved: Name or service not known 2.120119 16:26:04 [Warning] IP address ‘192.168.1.14’ could not be resolved: Name or service ...
使用git Bash here闪退并生成mintty.exe.stackdump文件 cmd使用git 报错 fatal:open /dev/null or dup failed: No such file or directory 并弹出mitty.dump文件 使用方法见我的CSDN
could not execute:bad executable format(win32 error 193) 下了一个实现MD5的代码,编译时没有错误,但是执行的时候却提示:could not execute:bad executable format(win32 error 193)
1、最新版本dlv文件支持goland的...3、解决error layer=debugger could not patch runtime.mallogc: no type entry found, use 'types' for a list of 4、替换路径为C:\GoLand 2021.2.2\plugins\go\lib\dlv\windows
本资源包是针对“COULD NOT FIND cglib”错误的解决方案,它包含了cglib库的jar包和对应的pom文件。让我们深入了解一下cglib库以及如何解决这种依赖缺失的问题。 **cglib库详解** CGlib(Code Generation Library)...
* kill:异常终止在 gdb 控制下运行的程序 * list:列出相应于正在执行的程序的原文件内容 * next:执行下一个源程序行,从而执行其整体中的一个函数 * print:显示变量或表达式的值 * pwd:显示当前工作目录 * ...
主要介绍了解决Unable to access 'https://gitee.com/自己的项目/': Could not resolve host: gitee.com问题,需要的朋友可以参考下
win10安装git报错 fatal:open /dev/null or dup failed: No such file or directory错误,将该文件复制到C:\Windows\System32\drivers 替换掉原有的null.sys文件重启即可
在使用PL/SQL Developer 12连接Oracle数据库时,可能会遇到“Could not initialize oci.dll”这样的错误提示。这个错误通常表明系统无法找到或正确加载Oracle客户端的oci.dll库文件,这是Oracle Instant Client的一...
在iOS开发过程中,开发者可能遇到一个常见的问题,即"Could not find Developer Disk Image"错误,尤其是在尝试在模拟器上运行iOS 9.3版本的应用时。这个错误通常表示Xcode无法找到与目标iOS版本匹配的开发者磁盘...
fatal: open /dev/null or dup failed: No such file or directory 解决文件
control could not be licensed:TXTextControl.TextControl 发布时:只需要将如下文件复制到应用程序目录即可。注意我的项目只用到rtf文档,如果是使用其它文件则复制相应的dll。 tx14.dll 核心组件dll tx14_tls.dll...
Nuclei:主动式IO和运行时系统 Nuclei是基于IO系统,与运行时无关,可以与任何运行时一起使用。 前摄器系统的设计原理与相匹配。 核不使用常规的React器方法。 它是完全异步的,并且以主动方式包装基于轮询的IO。...
Could not find module 'D:\codna\Library\bin\geos_c.dll'Could not find module 'D:\codna\Library\bin\geos_c.dll'Could not find module 'D:\codna\Library\bin\geos_c.dll'
Could not create tunnel: { Error: ngrok is not yet ready to start tunnels 时,将路径 我个人的是:(C:\Users\lenovo\AppData\Roaming\npm\node_modules)下的cordova-hot-code-push-cli文件下用下载的文件替换...
NULL 博文链接:https://lbay.iteye.com/blog/784874
解决Could not load font file: C:\Windows\FONTS\mstmc.ttf 对应问题贴https://blog.csdn.net/guozhangjie1992/article/details/103679640