@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 중국어 웹사이트의 기타 관련 기사를 참조하세요!