Package tools.jackson.databind.ext.sql


package tools.jackson.databind.ext.sql
Package that contains handlers specific to SQL datatypes. While these already existed in Jackson 2.x, in 3.x they are moved to a separate package within databind.

Note that this package depends on java.sql and java.sql.rowset modules.

Since:
3.0
  • Classes
    Class
    Description
    Serializer implementation for Blob to write as binary (for JSON and other formats Base64-encoded String, for binary formats as true binary).
    Compared to plain old Date, SQL version is easier to deal with: mostly because it is more limited.
    Compared to regular Date serialization, we do use String representation here.
    NOTE: name was SqlTimeSerializer in Jackson 2.x
    Simple deserializer for handling Timestamp values.
    Helper class used for isolating details of handling optional+external types (java.sql classes) from standard factories that offer them.