class test {
private String s;
private Date d;
}
使用setExcludes过滤不需要转换的属性
JsonConfig cfg = new JsonConfig();
cfg.setExcludes(new String[] { "d" });
class test {
private String s;
private Date d;
}
使用setExcludes过滤不需要转换的属性
JsonConfig cfg = new JsonConfig();
cfg.setExcludes(new String[] { "d" });