JSON的回归格式

时间:2016-04-28 23:09:32

标签: java json logging logback

有没有办法建议Logback格式以漂亮的方式打印JSON。

将json作为单行读取非常烦人,我不知道是否有办法使用正则表达式来指定:

示例这是默认值:

2016-04-28 17:59:26 DEBUG [FILE.java:126] {"TemplateInterpretation" : { "InterpretationLabel" : "T" , "InterpretationConfidence" : 1.0}}

我宁愿拥有的是:

2016-04-28 17:59:26 DEBUG [FILE.java:126] {
    "TemplateInterpretation" : {
        "InterpretationLabel" : "T" ,
        "InterpretationConfidence" : 1.0
    }
}

我正在使用Logback但是通过slf4j

我也尝试使用toString方法打印Mongodb对象,这样做:

/**
 * Returns a JSON serialization of this object
 * @return JSON serialization
 */    
@Override
public String toString(){
    return JSON.serialize( this );
}

我宁愿不必创建我自己的mongo序列化器版本来添加新行......

0 个答案:

没有答案