jsonschema2pojo
1.2.2
jsonschema2pojo는 JSON 스키마(또는 예: JSON)에서 Java 유형을 생성하고 Jackson 2.x 또는 Gson을 사용하여 데이터 바인딩을 위해 해당 유형에 주석을 달 수 있습니다.
brew install jsonschema2pojo
jsonschema2pojo를 Maven 플러그인, Ant 작업, 명령줄 유틸리티, Gradle 플러그인으로 사용하거나 자체 Java 앱에 내장할 수 있습니다. 시작하기 가이드에 방법이 나와 있습니다.
매우 간단한 Maven 예:
< plugin >
< groupId >org.jsonschema2pojo</ groupId >
< artifactId >jsonschema2pojo-maven-plugin</ artifactId >
< version >1.2.2</ version >
< configuration >
< sourceDirectory >${basedir}/src/main/resources/schema</ sourceDirectory >
< targetPackage >com.example.types</ targetPackage >
</ configuration >
< executions >
< execution >
< goals >
< goal >generate</ goal >
</ goals >
</ execution >
</ executions >
</ plugin >
매우 간단한 Gradle 예:
plugins {
id " java "
id " org.jsonschema2pojo " version " 1.2.2 "
}
repositories {
mavenCentral()
}
jsonSchema2Pojo {
targetPackage = ' com.example '
}
유용한 페이지:
프로젝트 자원:
특별한 감사:
Apache 라이센스 버전 2.0에 따라 라이센스가 부여됩니다.