當物件在 Jackson 函式庫中具有父子關係時,將使用@JsonIdentityInfo註解。 @JsonIdentityInfo 註解 用於在序列化和反序列化過程中指示物件身分。 ObjectIdGenerators.PropertyGenerator 是一個抽象佔位符類,用來表示要使用的物件識別碼來自 POJO 屬性的情況。
@Target(value={ANNOTATION_TYPE,TYPE,FIELD,METHOD,PARAMETER}) @Retention(value=RUNTIME) public @interface JsonIdentityInfo
import java.util.*; import java.io.*; import com.fasterxml.jackson.annotation.JsonIdentityInfo; import com.fasterxml.jackson.annotation.ObjectIdGenerators; import com.fasterxml.jackson.databind.ObjectMapper; public class JsonIdentityInfoTest { public static void main(String[] args) throws IOException { ObjectMapper mapper = new ObjectMapper(); User user = new User(115, "Raja", "Ramesh"); Address address = new Address(125, "Madhapur", "Hyderabad", user); user.addAddress(address); String jsonString = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(address); System.out.println(jsonString); } } // User class @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "userId") class User { private int userId; private String firstName; private String lastName; private List<Address> addresses; public User(int userId, String firstName, String lastName) { this.userId = userId; this.firstName = firstName; this.lastName = lastName; this.addresses = new ArrayList<Address>(); } public int getUserId() { return userId; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } public void addAddress(Address address) { addresses.add(address); } } // Address class @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "userId")<strong> </strong>class Address { private int userId; private String city; private String street; private User user; public Address(int userId, String street, String city, User user) { this.userId = userId; this.street = street; this.city = city; this.user = user; } public int getUserId() { return userId; } public String getStreet() { return street; } public String getCity() { return city; } public User getUser() { return user; } }
{ "userId" : 125, "city" : "Hyderabad", "street" : "Madhapur", "user" : { "userId" : 115, "firstName" : "Raja", "lastName" : "Ramesh" } }
以上是@JsonIdentityInfo註解在Java中使用Jackson的重要性是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!