}
public String toJson() {
JsonConfig jsonConfig = JsonConfigFactory.createJsonConfig(this.content);
jsonConfig.registerJsonValueProcessor(Date.class,new DateJsonValueProcessor());
jsonConfig.registerJsonValueProcessor(Timestamp.class,new DateJsonValueProcessor());
JsonConfigFactory.filteExcludes(this, jsonConfig);
return JSONObject.fromObject(this,
jsonConfig).toString();
}