@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 + ']'; } }
<strong>"Sai Adithya,115,Student[studentId = 115, studentName = Sai Adithya]"</strong>
以上がJava で Jackson を使用するときに @JsonValue アノテーションを使用するのはどのような場合ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。