Jackson의 ObjectMapper를 사용한 JSON 객체 순서 ObjectMapper 를 사용하여 Java-json 매핑을 수행하고 있습니다. ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter(); ow.writeValue(new File( fileName +".json"), jsonObj); 이것은 내 자바 클래스입니다. public class Relation { private String id; private String source; private String target; private String label; private List attributes; public String getId() { return id;..