Jackson-annotations-jsonrawvalue

提供:Dev Guides
移動先:案内検索

ジャクソン注釈-@JsonRawValue

*@ JsonRawValue* を使用すると、エスケープまたは装飾なしでテキストをシリアル化できます。

@JsonRawValueを使用しない例

import java.io.IOException;
import com.fasterxml.jackson.databind.ObjectMapper;

public class JacksonTester {
   public static void main(String args[]){
      ObjectMapper mapper = new ObjectMapper();
      try {
         Student student = new Student("Mark", 1, "{\"attr\":false}");
         String jsonString = mapper
            .writerWithDefaultPrettyPrinter()
            .writeValueAsString(student);
         System.out.println(jsonString);
      }
      catch (IOException e) {
         e.printStackTrace();
      }
   }
}
class Student {
   private String name;
   private int rollNo;
   private String json;
   public Student(String name, int rollNo, String json){
      this.name = name;
      this.rollNo = rollNo;
      this.json = json;
   }
   public String getName(){
      return name;
   }
   public int getRollNo(){
      return rollNo;
   }
   public String getJson(){
      return json;
   }
}

出力

{
   "name" : "Mark",
   "rollNo" : 1,
   "json" : {\"attr\":false}
}

@JsonRawValueを使用した例

import java.io.IOException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.annotation.JsonRawValue;

public class JacksonTester {
   public static void main(String args[]){
      ObjectMapper mapper = new ObjectMapper();
      try {
         Student student = new Student("Mark", 1, "{\"attr\":false}");
         String jsonString = mapper
            .writerWithDefaultPrettyPrinter()
            .writeValueAsString(student);
         System.out.println(jsonString);
      }
      catch (IOException e) {
         e.printStackTrace();
      }
   }
}
class Student {
   private String name;
   private int rollNo;
   @JsonRawValue
   private String json;
   public Student(String name, int rollNo, String json) {
      this.name = name;
      this.rollNo = rollNo;
      this.json = json;
   }
   public String getName(){
      return name;
   }
   public int getRollNo(){
      return rollNo;
   }
   public String getJson(){
      return json;
   }
}

出力

{
   "name" : "Mark",
   "rollNo" : 1,
   "json" : {"attr":false}
}