> Java > java지도 시간 > 본문

Java에서 Jackson을 사용하여 직렬화하는 동안 특정 클래스를 무시하는 방법은 무엇입니까?

WBOY
풀어 주다: 2023-08-19 09:25:04
앞으로
888명이 탐색했습니다.

Java에서 Jackson을 사용하여 직렬화하는 동안 특정 클래스를 무시하는 방법은 무엇입니까?

잭슨 @JsonIgnoreType 주석 을 사용하면 직렬화 중에 클래스 를 무시할 수 있으며 JSON 객체를 직렬화역직렬화할 때 클래스의 모든 속성 또는 필드 을 표시할 수 있습니다.

구문

@Target(value={ANNOTATION_TYPE,TYPE})
@Retention(value=RUNTIME)
public @interface JsonIgnoreType
로그인 후 복사

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
import java.io.*;
public class JsonIgnoreTypeTest {
   public static void main(String args[]) throws IOException {
      Employee emp = new Employee();
      ObjectMapper mapper = new ObjectMapper();
      String jsonString = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(emp);
      System.out.println(jsonString);
   }
}
// Employee class
class Employee {
<strong>   </strong>@JsonIgnoreType<strong>
</strong>   public static class Address {
      public String firstLine = null;
      public String secondLine= null;
      public String thirdLine = null;
      @Override
      public String toString() {
         return "Address{" +
                "firstLine=&#39;" + firstLine+ &#39;\&#39;&#39; +
                ", secondLine=&#39;" + secondLine+ &#39;\&#39;&#39; +
                ", thirdLine=&#39;" + thirdLine + &#39;\&#39;&#39; +
                &#39;}&#39;;
      }
   } // end of Address class
   public long empId = 115;
   public String empName = "Raja Ramesh";
   public Address empAddress = new Address();
  <strong> </strong>@Override
   public String toString() {
      return "Employee{" +
             "empId=" + empId +
             ", empName=&#39;" + empName + &#39;\&#39;&#39; +
             ", empAddress=" + empAddress +
             &#39;}&#39;;
   }
}
로그인 후 복사

출력

{
   "empId" : 115,
   "empName" : "Raja Ramesh"
}
로그인 후 복사

위 내용은 Java에서 Jackson을 사용하여 직렬화하는 동안 특정 클래스를 무시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!