Skip to content

Instantly share code, notes, and snippets.

View Fubuchi's full-sized avatar

Hải Hoàng Fubuchi

  • Ho Chi Minh City, Vietnam
  • 04:09 (UTC +07:00)
View GitHub Profile
@Fubuchi
Fubuchi / Example.java
Last active June 16, 2020 18:53
Jackson Serializer for Apache Pair class with custom field name
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class ComplexData {
private int id;
@JsonSerialize(using = PairSerializer.class)
// if left == right, R will overwrite L in the json result
@PairIdentify(left = "anyName1", right = "anyName2")
private Pair<L, R> data; // L, R is any type