java-tutorials/jackson/README.md

36 lines
2.6 KiB
Markdown
Raw Normal View History

2013-12-21 08:25:07 -05:00
=========
2013-12-21 08:26:49 -05:00
## Jackson Cookbooks and Examples
2013-12-21 08:25:07 -05:00
2016-06-28 05:16:18 -04:00
###The Course
The "REST With Spring" Classes: http://bit.ly/restwithspring
2013-12-21 08:25:07 -05:00
### Relevant Articles:
2016-02-08 05:53:05 -05:00
- [Jackson Unmarshall to Collection/Array](http://www.baeldung.com/jackson-collection-array)
- [Jackson Custom Serializer](http://www.baeldung.com/jackson-custom-serialization)
2019-02-28 07:49:57 -05:00
- [Getting Started with Custom Deserialization in Jackson](http://www.baeldung.com/jackson-deserialization)
2016-02-08 05:53:05 -05:00
- [Jackson Exceptions Problems and Solutions](http://www.baeldung.com/jackson-exception)
2016-02-08 05:54:36 -05:00
- [Jackson Date](http://www.baeldung.com/jackson-serialize-dates)
2016-02-09 07:30:27 -05:00
- [Jackson Bidirectional Relationships](http://www.baeldung.com/jackson-bidirectional-relationships-and-infinite-recursion)
2016-02-10 06:50:01 -05:00
- [Jackson JSON Tutorial](http://www.baeldung.com/jackson)
2016-02-10 06:50:52 -05:00
- [Jackson Working with Maps and nulls](http://www.baeldung.com/jackson-map-null-values-or-null-key)
2019-04-11 03:01:03 -04:00
- [Jackson Decide What Fields Get Serialized/Deserialized](http://www.baeldung.com/jackson-field-serializable-deserializable-or-not)
2016-10-04 05:01:26 -04:00
- [Jackson vs Gson](http://www.baeldung.com/jackson-vs-gson)
- [XML Serialization and Deserialization with Jackson](http://www.baeldung.com/jackson-xml-serialization-and-deserialization)
- [More Jackson Annotations](http://www.baeldung.com/jackson-advanced-annotations)
- [Inheritance with Jackson](http://www.baeldung.com/jackson-inheritance)
- [Guide to @JsonFormat in Jackson](http://www.baeldung.com/jackson-jsonformat)
2019-03-01 05:44:51 -05:00
- [Using Optional with Jackson](http://www.baeldung.com/jackson-optional)
2017-04-02 04:08:13 -04:00
- [Map Serialization and Deserialization with Jackson](http://www.baeldung.com/jackson-map)
- [Jackson Streaming API](http://www.baeldung.com/jackson-streaming-api)
2017-10-23 02:08:40 -04:00
- [Jackson JsonMappingException (No serializer found for class)](http://www.baeldung.com/jackson-jsonmappingexception)
- [How To Serialize Enums as JSON Objects with Jackson](http://www.baeldung.com/jackson-serialize-enums)
- [Jackson Marshall String to JsonNode](http://www.baeldung.com/jackson-json-to-jsonnode)
- [Jackson Unmarshall to Collection/Array](http://www.baeldung.com/jackson-collection-array)
- [Serialize Only Fields that meet a Custom Criteria with Jackson](http://www.baeldung.com/jackson-serialize-field-custom-criteria)
- [Mapping Nested Values with Jackson](http://www.baeldung.com/jackson-nested-values)
- [Convert XML to JSON Using Jackson](https://www.baeldung.com/jackson-convert-xml-json)
2019-02-05 05:45:58 -05:00
- [Deserialize Immutable Objects with Jackson](https://www.baeldung.com/jackson-deserialize-immutable-objects)
2019-03-11 04:25:52 -04:00
- [Mapping a Dynamic JSON Object with Jackson](https://www.baeldung.com/jackson-mapping-dynamic-object)