Package com.dslplatform.json
Annotation Type JsonAttribute
Compile time property configuration.
Specify custom property for processing specific properties.
Eg. different property name in JSON, ignore this property, etc...
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumCustomize property serialization behavior in minimal serialization object format. -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionString[]Multiple different incoming JSON properties can be deserialized into same POJO property.Custom property converter.booleanUse only hash match for detecting incoming property.booleanShould this property be read/written in JSON.Allows for fine tuning minimal serialization object format.intSpecify index order during serialization.booleanWhen mandatory is enabled, property must always exist in incoming JSON.Property name in JSON.booleanCan this field be nullable.Abstract types used as properties by default include type signature information so they can be properly deserialized.
-
Element Details
-
ignore
boolean ignoreShould this property be read/written in JSON.- Returns:
- true for ignored property
- Default:
false
-
mandatory
boolean mandatoryWhen mandatory is enabled, property must always exist in incoming JSON. If property is missing during parsing an IOException will be thrown.
Mandatory does not mean property will always be included in JSON, but this can be enforced either by using full serialization on object format, array format, or includeToMinimal setting for minimal serialization.- Returns:
- true for mandatory property
- Default:
false
-
nullable
boolean nullableCan this field be nullable. This will omit null checks for micro performance boost (reduced branching).- Returns:
- check for null values
- Default:
true
-
name
String nameProperty name in JSON. When property name in JSON differs from this property name. Eg. "my_property" for public String myProperty;- Returns:
- JSON property name
- Default:
""
-
index
int indexSpecify index order during serialization. -1 implies default order- Returns:
- order when defined
- Default:
-1
-
hashMatch
boolean hashMatchUse only hash match for detecting incoming property. DSL-JSON by default matches properties only by hash value. If object contains multiple properties with same hash value additional checks are performed. Those checks can be enabled always by setting hashMatch to false.- Returns:
- should only hashMatch be used
- Default:
true
-
alternativeNames
String[] alternativeNamesMultiple different incoming JSON properties can be deserialized into same POJO property. This is useful during model changes or for coping with casing issues. Eg. "my_property", "myProperty", "MyProperty" can all be deserialized into public String myProperty;- Returns:
- alternative JSON property names
- Default:
{}
-
converter
Class converterCustom property converter. Unlike @JsonConverter which specifies converter for type, this converter specifies conversion only for this property. This can be used for simple formatting or for coping with "invalid" JSON.- Returns:
- converter used for this property
- Default:
com.dslplatform.json.JsonAttribute.class
-
typeSignature
CompiledJson.TypeSignature typeSignatureAbstract types used as properties by default include type signature information so they can be properly deserialized. Type signature is included with as additional "$type":"actual.type.name" property (at the start of the object). To disable inclusion of $type attribute, set this property to EXCLUDE. This property overrides the value set on @CompiledJson- Returns:
- should include type signature in JSON
- Default:
DEFAULT
-
includeToMinimal
JsonAttribute.IncludePolicy includeToMinimalAllows for fine tuning minimal serialization object format. By default only properties with non default values will be included during serialization for such configuration. To always include some properties in output JSON this settings can be set to ALWAYS.
While mandatory will require that property exists during parsing, this complements the feature so that property always exist in output JSON.- Returns:
- minimal serialization object format policy for this property
- Default:
NON_DEFAULT
-