@JsonIgnorePropertiesJackson 주석을 사용하여 무시할 클래스의 properties 또는 fields 목록을 지정할 수 있습니다. @JsonIgnoreProperties 주석 은 무시할 개별 속성이나 필드 앞이 아닌 클래스 선언 앞에 배치할 수 있습니다.
@Target(value={ANNOTATION_TYPE,TYPE,METHOD,CONSTRUCTOR,FIELD}) @Retention(value=RUNTIME) public @interface JsonIgnoreProperties
import java.io.*; import com.fasterxml.jackson.annotation.*; import com.fasterxml.jackson.databind.*; public class JsonIgnorePropertiesTest { public static void main(String[] args) throws IOException { Customer customer = new Customer("120", "Ravi", "Hyderabad"); System.out.println(customer); ObjectMapper mapper = new ObjectMapper(); String jsonString = mapper.writeValueAsString(customer); System.out.println("JSON: " + jsonString); System.out.println("---------"); jsonString = "{\"id\":\"130\",\"name\":\"Rahul\", \"address\":\"Mumbai\"}"; System.out.println("JSON: " + jsonString); customer = mapper.readValue(jsonString, Customer.class); System.out.println(customer); } } // Customer class @JsonIgnoreProperties({"id", "address"}) <strong> </strong>class Customer { private String id; private String name; private String address; public Customer() { } public Customer(String id, String name, String address) { this.id = id; this.name = name; this.address = address; } public String getId() { return id; } public String getName() { return name; } public String getAddress() { return address; } <strong> </strong>@Override public String toString() { return "Customer [id=" + id + ", name=" + name + ", address=" + address + "]"; } }
Customer [id=120, name=Ravi, address=Hyderabad] JSON: {"name":"Ravi"} --------- JSON: {"id":"130","name":"Rahul", "address":"Mumbai"} Customer [id=null, name=Rahul, address=null]
위 내용은 Java에서 JSON 객체의 여러 속성을 무시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!