2013-10-15 3 views
1

어쨌든 JSON 문자열에서 Java POJO 템플릿을 만들 수 있습니까? 나는 내가 찾은 가장 좋은 해결책은 http://www.jsonschema2pojo.org/JSON을 POJO로 변환하는 방법

였습니다뿐만 아니라 잭슨과 메이븐과 온라인 도구에 대한 지원을하고 뉴저지

{ 
    "reviewData" : [ { 
    "projectKey" : "CR-FOO", 
    "name" : "Example review.", 
    "description" : "Description or statement of objectives for this example review.", 
    "author" : { 
     "userName" : "joe", 
     "displayName" : "Joe Krustofski", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "moderator" : { 
     "userName" : "scott", 
     "displayName" : "Scott the Moderator", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "creator" : { 
     "userName" : "joe", 
     "displayName" : "Joe Krustofski", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "permaId" : { 
     "id" : "CR-FOO-21" 
    }, 
    "permaIdHistory" : [ "CR-FOO-21" ], 
    "type" : "REVIEW", 
    "allowReviewersToJoin" : true, 
    "metricsVersion" : 4, 
    "createDate" : "2013-10-08T15:46:11.022+0200", 
    "dueDate" : "2013-10-09T15:46:11.022+0200", 
    "jiraIssueKey" : "FOO-6754" 
    }, { 
    "projectKey" : "CR-FOO", 
    "name" : "Example review.", 
    "description" : "Description or statement of objectives for this example review.", 
    "author" : { 
     "userName" : "joe", 
     "displayName" : "Joe Krustofski", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "moderator" : { 
     "userName" : "scott", 
     "displayName" : "Scott the Moderator", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "creator" : { 
     "userName" : "joe", 
     "displayName" : "Joe Krustofski", 
     "avatarUrl" : "http://foo.com/avatar" 
    }, 
    "permaId" : { 
     "id" : "CR-FOO-21" 
    }, 
    "permaIdHistory" : [ "CR-FOO-21" ], 
    "type" : "REVIEW", 
    "allowReviewersToJoin" : true, 
    "metricsVersion" : 4, 
    "createDate" : "2013-10-08T15:46:11.022+0200", 
    "dueDate" : "2013-10-09T15:46:11.022+0200", 
    "jiraIssueKey" : "FOO-6754" 
    } ] 
} 
+0

찾을 대답 http://stackoverflow.com/questions/1957406/generate-java-class-from-json – DarVar

답변

5

을 사용하고 있습니다.

여기
관련 문제