一般有兩種方式:
首先我們要在maven中新增必須的依賴
方式一.
1、在待轉化的欄位之上加上@JsonSerialize(using=ToStringSerializer.class)註解,如圖所示:
Controller方法不需要特殊處理,但是使用這種時,如果需要轉換的欄位較多,就顯得比較繁瑣。
一般有兩種方式:
首先我們要在maven中新增必須的依賴
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.8.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.8.6</version> </dependency>方式一.
1、在待轉化的欄位之上加上@JsonSerialize(using=ToStringSerializer.class)註解,如圖所示:
@JsonInclude(JsonInclude.Include.NON_NULL)public class ProductVo { @JsonSerialize(using=ToStringSerializer.class) private Long productId private String productName; get,set省略Controller方法不需要特殊處理,但是使用這種時,如果需要轉換的欄位較多,就顯得比較繁瑣。