ホームページ  >  記事  >  Java  >  Java で Jackson を使用するときに @JsonValue アノテーションを使用するのはどのような場合ですか?

Java で Jackson を使用するときに @JsonValue アノテーションを使用するのはどのような場合ですか?

王林
王林転載
2023-09-01 22:05:051131ブラウズ

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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。