springboot整合gson

在打印類的日誌的時候,有時候類的屬性很長,打印出來一個很長的信息,不易觀看屬性的內容,來判斷錯誤的內容!但如今我發現了一個工具gson,可讓你的類打印成爲一個json以便觀看!java

1.maven導包spring

<!--json轉換工具-->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>

2.寫一個工具類:JsonUtiljson

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;maven

/**
* json的工具
*/
public class JsonUtil {ide

public static String toJson(Object object){
GsonBuilder gsonBuilder=new GsonBuilder();
gsonBuilder.setPrettyPrinting();
Gson gson=gsonBuilder.create();
return gson.toJson(object);
}
}

3.測試工具工具

package com.xuy.testjson;測試

import javafx.scene.media.VideoTrack;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;ui

@RunWith(SpringRunner.class)
@SpringBootTest
@Slf4j
public class TestJson {google

@Test
public void testJson(){
Student xuy = new Student("xuy", 18, true);
log.info("[學生] xuy={}", JsonUtil.toJson(xuy));
}
}.net


4.觀看打印信息

 

 

這樣就比較便於觀看啦!————————————————版權聲明:本文爲CSDN博主「阿毅。」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處連接及本聲明。原文連接:https://blog.csdn.net/weixin_44265189/article/details/101233360

相關文章
相關標籤/搜索