Die
@JsonValue-Annotation ist auf Methodenebene nützlich. Wir können diese Annotation verwenden, um eine JSON-Zeichenfolge aus einem Java-Objekt zu generieren. Wenn wir das serialisierte Objekt drucken möchten, überschreiben Sie die Methode toString(). Aber mit der Annotation @JsonValue können wir definieren, wie Java-Objekte serialisiert werden.
<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>
Das obige ist der detaillierte Inhalt vonWann sollte die Annotation @JsonValue verwendet werden, wenn Jackson in Java verwendet wird?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!