- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自定义类结构 DocumentListVO 与 JSON 响应一对一映射,但是在使用 DocumentListVO dv1 =restTemplate.getForObject(uri,DocumentListVO.class)
时,它会抛出以下堆栈跟踪错误:
GET request for
"http://aaa.ddd.com:8081/bpi1/service/aa/documen1t/list23"
resulted in 200 ()
[2018-05-28 12:49:46,397]-DEBUG org.springframework.web.client.RestTemplate - Reading [class
com.fascorp.isis.ejb.documentVO.DocumentListVO1] as
"application/json;charset=UTF-8" using
[org.springframework.http.converter.json.MappingJackson2HttpMessageConverter@58206f8]
[2018-05-28 12:49:46,399]-DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]"
[2018-05-28 12:49:46,400]-DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]"
[2018-05-28 12:49:46,402]-DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager -
Connection [id: 0][route: {}->http://aaa.ddd.com:8081] can be kept
alive indefinitely
[2018-05-28 12:49:46,404]-DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager -
Connection released: [id: 0][route:
{}->http://aaa.ddd.com:8081][total kept alive: 1; route allocated:
1 of 2; total allocated: 1 of 10]
org.springframework.http.converter.HttpMessageNotReadableException:
Could not read JSON: Unrecognized field "Results" (class
com.fascorp.isis.ejb.documentVO.DocumentListVO1), not marked as
ignorable (3 known properties: , "success", "results", "count"])
at [Source: org.apache.http.conn.EofSensorInputStream@209152d; line: 1, column: 13] (through reference chain:
com.fascorp.isis.ejb.documentVO.DocumentListVO1["Results"]); nested
exception is
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException:
Unrecognized field "Results" (class
com.fascorp.isis.ejb.documentVO.DocumentListVO1), not marked as
ignorable (3 known properties: , "success", "results", "count"])
at [Source: org.apache.http.conn.EofSensorInputStream@209152d; line: 1, column: 13] (through reference chain:
com.fascorp.isis.ejb.documentVO.DocumentListVO1["Results"])
at org.springframework.http.converter.json.MappingJackson2HttpMessageConverter.readJavaType(MappingJackson2HttpMessageConverter.java:228)
at org.springframework.http.converter.json.MappingJackson2HttpMessageConverter.read(MappingJackson2HttpMessageConverter.java:220)
at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:95)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:559)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:527)
at org.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:259)
public class DocumentListVO
{
String Count;
boolean Success;
Results[] Results;
public DocumentListVO()
{
super();
}
public DocumentListVO(String Count, boolean success, Results[] results)
{
super();
this.Count = Count;
this.Success = success;
this.Results = results;
}
public Results[] getResults()
{
return Results;
}
public void setResults( Results[] results)
{
this.Results = results;
}
public String getCount()
{
return Count;
}
public void setCount( String count)
{
this.Count = count;
}
public boolean isSuccess()
{
return Success;
}
public void setSuccess( boolean success)
{
this.Success = success;
}
@Override
public String toString()
{
return "DocumentListVO [count=" + Count + ", success=" + Success
+ ", results=" + Arrays.toString(Results) + "]";
}
}
JSON 响应:
{
"Results": [
{
"Category": "abcde",
"DateCreated": "12-13-2016 14:43:31",
"Token": "ad",
"ClassDescription": "Wisd",
"DocumentTitle": "Rela",
"ContentSize": "58",
"MimeType": "application/pdf"
},
{
"Category": "tyreytr",
"DateCreated": "11-07-2017 13:37:11",
"Token": "hgdf",
"ClassDescription": "With",
"DocumentTitle": "Related Doc - 1234646315",
"ContentSize": "58",
"MimeType": "application/pdf"
}
]
"Count": 89,
"Success": true
}
最佳答案
在您的字段上添加 @JsonProperty 注释。
public class DocumentListVO
{
@JsonProperty("Count")
String Count;
@JsonProperty("Success")
boolean Success;
@JsonProperty("Results")
Results[] Results;
..... setters / getters
// add annotation on setter / getter too (not necessary)
}
原因是 Jackson 不读取私有(private)变量名称,而是读取 setter/getter 方法名称。
因此,Results
的 setter 将是 setResults
,但 Jackson 根据 setter/getters 的命名约定将字段名称解释为 results
。
添加 @JsonProperty 后,您还可以按照 java 命名约定重命名字段,count
、success
、results
等等
关于json - RestTemplate getForObject 无法映射自定义类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50561443/
我的休息服务请求: Price[] prices = restTemplate.getForObject("https://sbk02.test.sparebank1.no/sbk/rest/poc1
自定义类结构 DocumentListVO 与 JSON 响应一对一映射,但是在使用 DocumentListVO dv1 =restTemplate.getForObject(uri,Documen
我正在编写一个简单的 REST 客户端,我的服务类有一个使用的方法 RestTemplate.getForObject() 我想练习测试,但我真的不知道我们是否应该测试类(class)。我也不知道如何
自定义类结构 DocumentListVO 与 JSON 响应一对一映射,但是在使用 DocumentListVO dv1 =restTemplate.getForObject(uri,Documen
2018 年 2 月 5 日更新(大约 4 年后)...我再次对此进行了测试,因为人们一直在支持我的问题/答案,而 Sotirios Delimanolis 是正确的,我不应该写我的答案中的代码来完成
我正在尝试从“https://swapi.co/api/people/?format=json ”获取数据并使用 RestTemplate.getForObject() 方法将其放入 POJO 中。我
为了编写干净智能的代码,我想知道我可以做些什么来改进我的实际代码: public JSONObject getCustomer(final String customerId) { if (c
我同时使用了 entity()、exchange()、getforObject(),一切似乎都运行良好。但不确定哪种方法适合不同的场景。请提供有关每种方法的更多信息,例如优缺点,在哪里使用哪里不使用。
我想使用restTemplate.getForObject方法,并且当所有请求的响应JSON键都相同时,我已经让它工作了。然后我使用了 @JsonProperty 注释,一切正常。 但现在我有一个响应
我是 Spring 的新手。我正在编写尝试使用 restTemplate.getForObject 传递 header 的代码 客户端: String userServiceUrl = "http:/
我会在 RestService 中为所有类型的 URI 和 VO 创建一个“通用” get() 。 但我不知道如何定义(并使用它)一个参数来创建通用 get(uri, className)。我试过这个
我想将以下 json 解析为 java 类: { "coord": { "lon": 5, "lat": 51 }, "weather": [ { "i
我在服务器端有一个方法可以提供有关在我的数据库中注册的特定名称的信息。我正在从我的 Android 应用程序访问它。 对Server的请求正常完成。我想要做的是根据我想要获得的名称将参数传递给服务器。
我在 Spring MVC Controller 中有一个简单的 REST 方法,如下所示,其签名为: @RequestMapping(value="/person/{personId}", meth
我正在尝试向 Api Rest 发出获取请求,但我总是收到 404,不过,如果尝试在浏览器或 postMan 中复制 queryUrl,它会完美运行。 restTemplate.getForObjec
我正在使用 Spring 的 RestTemplate 访问 Web 服务,并获取以下堆栈跟踪: Exception in thread "main" org.springframework.http
如何使用 jmockit 模拟 RestTemplate 类中的 getForObject 方法 - 我正在尝试这样做 - @Test public void test2DataClie
在我的浏览器中,以下 rest API url 正在运行,我可以看到 XML 结果。 "http://V7846EKZZJ1OJAW486D66IS7GO24XKUZ@localhost:8090/p
我创建了以下简单测试来查询 iTunes: @Test fun loadArtist() { val restTemplate = RestTemplate() val builder
我已经使用了这个答案中的解决方案: Get list of JSON objects with Spring RestTemplate它工作得很好。它完全符合我的需要。 ProcessDefiniti
我是一名优秀的程序员,十分优秀!