> Java > java지도 시간 > 본문

Java에서 Jackson을 사용할 때 @JsonValue 주석을 언제 사용합니까?

王林
풀어 주다: 2023-09-01 22:05:05
앞으로
1136명이 탐색했습니다.

Java에서 Jackson을 사용할 때 @JsonValue 주석을 언제 사용합니까?

@JsonValue 주석 은 메서드 수준에서 유용합니다. 이 주석을 사용하여 Java 객체에서 JSON 문자열을 생성할 수 있습니다. 직렬화된 객체를 인쇄하려면 toString() 메서드를 재정의하세요. 하지만 @JsonValue 주석을 사용하면 Java 객체가 직렬화되는 방식을 정의할 수 있습니다.

구문

<strong>@Target(value={ANNOTATION_TYPE,METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface JsonValue</strong>
로그인 후 복사

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
public class JsonValueAnnotationTest {
   public static void main(String args[]) throws Exception {
      <strong>ObjectMapper </strong>mapper = new <strong>ObjectMapper()</strong>;
      String jsonString = mapper.<strong>writeValueAsString</strong>(new Student());
      System.out.println(jsonString);
   }
}
<strong>// Student class</strong>
class Student {
   <strong>@JsonProperty</strong>
   private int studentId = 115;
  <strong> @JsonProperty</strong>
   private String studentName = "Sai Adithya";
   <strong>@JsonValue</strong>
   public String <strong>toJson</strong>() {
      return this.studentName + "," + this.studentId + "," + this.toString();
   }
   <strong>@Override</strong>
   public String toString() {
      return "Student[" +
            "studentId = " + studentId +
      ", studentName = " + studentName +
      &#39;]&#39;;
   }
}
로그인 후 복사

출력

<strong>"Sai Adithya,115,Student[studentId = 115, studentName = Sai Adithya]"</strong>
로그인 후 복사

위 내용은 Java에서 Jackson을 사용할 때 @JsonValue 주석을 언제 사용합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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