Download jsonschema2pojo Free Java Code

Description

Generates Java types from JSON Schema (or example JSON) and annotates those types for data binding with Jackson 1.x or 2.x, Gson, etc.

Source Files

The download file jsonschema2pojo-master.zip has the following entries.


.gitignore/*w  w w .  j a  va  2s  .c o  m*/
.travis.yml
CHANGELOG.md
CONTRIBUTORS.md
LICENSE
NOTICE
README.md
jsonschema2pojo-ant/NOTICE
jsonschema2pojo-ant/pom.xml
jsonschema2pojo-ant/src/main/java/org/jsonschema2pojo/ant/Jsonschema2PojoTask.java
jsonschema2pojo-ant/src/main/java/org/jsonschema2pojo/ant/package-info.java
jsonschema2pojo-ant/src/site/Jsonschema2PojoTask.html
jsonschema2pojo-cli/NOTICE
jsonschema2pojo-cli/pom.xml
jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/Arguments.java
jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/ClassConverter.java
jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/FileCodeWriter.java
jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/Jsonschema2Pojo.java
jsonschema2pojo-cli/src/main/java/org/jsonschema2pojo/cli/package-info.java
jsonschema2pojo-cli/src/main/scripts/jsonschema2pojo.bat
jsonschema2pojo-cli/src/main/scripts/jsonschema2pojo.sh
jsonschema2pojo-cli/src/test/java/org/jsonschema2pojo/cli/ArgumentsTest.java
jsonschema2pojo-cli/src/test/java/org/jsonschema2pojo/cli/ClassConverterTest.java
jsonschema2pojo-core/NOTICE
jsonschema2pojo-core/pom.xml
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/AbstractAnnotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/AnnotationStyle.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/Annotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/AnnotatorFactory.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/CompositeAnnotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/ContentResolver.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/DefaultGenerationConfig.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/FragmentResolver.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/GenerationConfig.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/GsonAnnotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/Jackson1Annotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/Jackson2Annotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/NoopAnnotator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/Schema.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/SchemaGenerator.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/SchemaMapper.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/SchemaStore.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/SourceType.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/exception/ClassAlreadyExistsException.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/exception/GenerationException.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/exception/package-info.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/AdditionalPropertiesRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/ArrayRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/DefaultRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/DescriptionRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/EnumRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/FormatRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/MinItemsMaxItemsRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/MinLengthMaxLengthRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/MinimumMaximumRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/NameHelper.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/ObjectRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/PatternRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/PrimitiveTypes.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/PropertiesRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/PropertyRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/RequiredRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/Rule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/RuleFactory.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/SchemaRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/TitleRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/TypeRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/ValidRule.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/rules/package-info.java
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/util/Inflector.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/AnnotatorFactoryTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/ContentResolverTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/FragmentResolverTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/SchemaMapperTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/SchemaStoreTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/example/Example.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/ArrayRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/DescriptionRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/FormatRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/RequiredRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/RuleFactoryImplTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/SchemaRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/TitleRuleTest.java
jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/rules/TypeRuleTest.java
jsonschema2pojo-core/src/test/resources/schema/address.json
jsonschema2pojo-core/src/test/resources/schema/enum.json
jsonschema2pojo-eclipse-formatter.xml
jsonschema2pojo-eclipse-preferences.epf
jsonschema2pojo-gradle-plugin/NOTICE
jsonschema2pojo-gradle-plugin/README.md
jsonschema2pojo-gradle-plugin/example/build.gradle
jsonschema2pojo-gradle-plugin/example/gradle/wrapper/gradle-wrapper.jar
jsonschema2pojo-gradle-plugin/example/gradle/wrapper/gradle-wrapper.properties
jsonschema2pojo-gradle-plugin/example/gradlew
jsonschema2pojo-gradle-plugin/example/gradlew.bat
jsonschema2pojo-gradle-plugin/example/settings.gradle
jsonschema2pojo-gradle-plugin/example/src/main/resources/json/address.json
jsonschema2pojo-gradle-plugin/example/src/main/resources/json/external_dependencies.json
jsonschema2pojo-gradle-plugin/pom.xml
jsonschema2pojo-gradle-plugin/src/main/groovy/org/jsonschema2pojo/gradle/GenerateJsonSchemaTask.groovy
jsonschema2pojo-gradle-plugin/src/main/groovy/org/jsonschema2pojo/gradle/JsonSchemaExtension.groovy
jsonschema2pojo-gradle-plugin/src/main/groovy/org/jsonschema2pojo/gradle/JsonSchemaPlugin.groovy
jsonschema2pojo-gradle-plugin/src/main/resources/META-INF/gradle-plugins/jsonschema2pojo.properties
jsonschema2pojo-integration-tests/NOTICE
jsonschema2pojo-integration-tests/pom.xml
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/AdditionalPropertiesIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ArrayIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/DefaultIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/DescriptionIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/EnumIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ExtendsIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/FormatIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/PropertiesIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/RegressionIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/RequiredIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/TitleIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/TypeIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ant/Jsonschema2PojoTaskIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/AnnotationStyleIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/CustomAnnotatorIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/GsonIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/IncludeHashCodeAndEqualsIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/IncludeJsr303AnnotationsIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/IncludeToStringIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/JodaDatesIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/OutputEncodingIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/config/RemoveOldOutputIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/json/JsonTypesIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/json/RealJsonExamplesIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/AbsoluteRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/ClasspathRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/CyclicalRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/FragmentRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/HttpRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/RelativeRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/ref/SelfRefIT.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/util/CodeGenerationHelper.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/util/Compiler.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/util/FileSearchMatcher.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/util/JsonAssert.java
jsonschema2pojo-integration-tests/src/test/java/org/jsonschema2pojo/integration/util/TestableJsonschema2PojoMojo.java
jsonschema2pojo-integration-tests/src/test/resources/ant/build.xml
jsonschema2pojo-integration-tests/src/test/resources/ant/example.json
jsonschema2pojo-integration-tests/src/test/resources/ant/exampleWithExtraClasspath.json
jsonschema2pojo-integration-tests/src/test/resources/json/array.json
jsonschema2pojo-integration-tests/src/test/resources/json/arrayAsRoot.json
jsonschema2pojo-integration-tests/src/test/resources/json/complexObject.json
jsonschema2pojo-integration-tests/src/test/resources/json/examples/GetUserData.json
jsonschema2pojo-integration-tests/src/test/resources/json/examples/torrent.json
jsonschema2pojo-integration-tests/src/test/resources/json/simpleTypeAsRoot.json
jsonschema2pojo-integration-tests/src/test/resources/json/simpleTypes.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/additionalPropertiesArraysOfStrings.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/additionalPropertiesObject.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/additionalPropertiesPrimitiveBoolean.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/additionalPropertiesString.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/defaultAdditionalProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/additionalProperties/noAdditionalProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/array/arrayAsRoot.json
jsonschema2pojo-integration-tests/src/test/resources/schema/array/typeWithArrayProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/default/default.json
jsonschema2pojo-integration-tests/src/test/resources/schema/description/description.json
jsonschema2pojo-integration-tests/src/test/resources/schema/enum/enumAsRoot.json
jsonschema2pojo-integration-tests/src/test/resources/schema/enum/enumWithEmptyString.json
jsonschema2pojo-integration-tests/src/test/resources/schema/enum/enumWithNullValue.json
jsonschema2pojo-integration-tests/src/test/resources/schema/enum/enumWithUppercaseProperty.json
jsonschema2pojo-integration-tests/src/test/resources/schema/enum/typeWithEnumProperty.json
jsonschema2pojo-integration-tests/src/test/resources/schema/extends/a.json
jsonschema2pojo-integration-tests/src/test/resources/schema/extends/extendsEmbeddedSchema.json
jsonschema2pojo-integration-tests/src/test/resources/schema/extends/extendsString.json
jsonschema2pojo-integration-tests/src/test/resources/schema/extends/subtypeOfA.json
jsonschema2pojo-integration-tests/src/test/resources/schema/extends/subtypeOfSubtypeOfA.json
jsonschema2pojo-integration-tests/src/test/resources/schema/format/formattedProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/all.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/maxItems.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/maxLength.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/maximum.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/minAndMaxItems.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/minItems.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/minLength.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/minimum.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/pattern.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/required.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/validArray.json
jsonschema2pojo-integration-tests/src/test/resources/schema/jsr303/validObject.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/nullProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/orderedProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/primitiveProperties.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/propertiesThatAreJavaKeywords.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/propertiesWithWordDelimiters.json
jsonschema2pojo-integration-tests/src/test/resources/schema/properties/propertyCalledClass.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/a.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/absoluteRef.json.template
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/address.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/classpathRefs.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/classpathRefs2.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/classpathRefs3.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/fragmentRefs.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/httpRefs.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/refsToA.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/selfRefs.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/subdirectory1/refToSubdirectory2.json
jsonschema2pojo-integration-tests/src/test/resources/schema/ref/subdirectory2/refToSubdirectory1.json
jsonschema2pojo-integration-tests/src/test/resources/schema/regression/extendedCharacters.json
jsonschema2pojo-integration-tests/src/test/resources/schema/regression/spaces in path.json
jsonschema2pojo-integration-tests/src/test/resources/schema/required/required.json
jsonschema2pojo-integration-tests/src/test/resources/schema/title/title.json
jsonschema2pojo-integration-tests/src/test/resources/schema/type/integerAsLong.json
jsonschema2pojo-integration-tests/src/test/resources/schema/type/typeNameConflict.json
jsonschema2pojo-integration-tests/src/test/resources/schema/type/types.json
jsonschema2pojo-integration-tests/src/test/resources/schema/type/unionTypes.json
jsonschema2pojo-maven-plugin/NOTICE
jsonschema2pojo-maven-plugin/pom.xml
jsonschema2pojo-maven-plugin/src/main/java/org/jsonschema2pojo/maven/Jsonschema2PojoMojo.java
jsonschema2pojo-maven-plugin/src/main/java/org/jsonschema2pojo/maven/ProjectClasspath.java
jsonschema2pojo-maven-plugin/src/main/java/org/jsonschema2pojo/maven/package-info.java
jsonschema2pojo-maven-plugin/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml
jsonschema2pojo-maven-plugin/src/test/resources/example/pom.xml
jsonschema2pojo-maven-plugin/src/test/resources/example/schema/formattedProperties.json
jsonschema2pojo-upload-release
pom.xml

Download

Click the following link to download jsonschema2pojo-master.zip.

jsonschema2pojo-master.zip




















Home »
  Java Free Code »
    Development »




Algebra
Algorithm
Ant
Bytecode
Compiler
DataMining
DSL
Eclipse
Example
File
Git
Intellij
JavaBean
JAX
jBPM
JDK8
JME
JMX
JodaTime
JRuby
JSE
JSON
JVM
Lambda
libgdx
Library
log4j
Markdown
Math
Maven
Netbeans
NIO
NLP
OSGi
Plugin
Scala
SDK
slf4j
Template
Thread
Tutorial
Unicode
Utility
ZooKeeper