【发布时间】:2015-05-18 15:24:22
【问题描述】:
我正在尝试使用 Jackson 序列化一个包含两个字符串和字符串到字符串的映射的类。这是我要序列化的json。我想知道是否有问题,因为我正在尝试序列化空数组。
{
"filters": {
"test": [
"hi"
],
"groups": [],
"groupsOT": [],
"chains": [],
"chainsOT": [],
"locations": [],
"locationsOT": [],
"reports": [],
"reportsOT": []
},
"fromDate": "09.03.2015",
"toDate": "16.03.2015"
}
这是用于尝试序列化的类。
public class FilterRequest{
public String getToDate() {
return toDate;
}
public void setToDate(String toDate) {
this.toDate = toDate;
}
public String getFromDate() {
return fromDate;
}
public void setFromDate(String fromDate) {
this.fromDate = fromDate;
}
public Map<String, String[]> getFilters() {
return filters;
}
public void setFilters(Map<String, String[]> filters) {
this.filters = filters;
}
private String toDate;
private String fromDate;
private Map<String,String[]> filters;
public FilterRequest(){
filters = new HashMap<String,String[]>();
}
}
失败的代码很简单
ObjectMapper mapper = new ObjectMapper();
FilterRequest requestParams = mapper.readValue(requestBody, FilterRequest.class);
我得到的错误是
No suitable constructor found for type [simple type, class com.aramburu.overall.web.controller.FilterController$FilterRequest]: can not instantiate from JSON object (need to add/enable type information?)
at [Source: {"filters":{"test":["hi"],"groups":[],"groupsOT":[],"chains":[],"chainsOT":[],"locations":[],"locationsOT":[],"reports":[],"reportsOT":[]},"fromDate":"09.03.2015","toDate":"16.03.2015"}; line: 1, column: 2]
【问题讨论】:
-
这里的 FilteredRequest 是改变了还是实际的类是这样的?
-
注释在哪里?
-
FilterRequest是FilterController的内部类吗?在这种情况下,我认为FilterRequest需要声明为静态。或者,更好的是,搬到自己的班级。 -
我以前从未需要使用注解让杰克逊进行映射。我将尝试将其声明为静态,然后将其移动到自己的类中,看看是否会有所不同。