Does JBoss EAP support the use of Jackson libraries?

Updated -

Jackson is an open source project that provides Java APIs to parse, process, convert, and generate JSON (JavaScript Object Notation) documents. There are two versions of the Jackson APIs:

  • The org.codehaus.jackson API was used by some of the Red Hat JBoss Web Framework Kit (WFK) quickstarts to create custom JSON serializers and deserializers, format dates, and handle NULL properties. Although this API is used by some of the quickstarts, these libraries are private and are not recommended in a JBoss EAP production environment.

  • JBoss EAP 7.0 and later is packaged with the com.fasterxml.jackson Jackson libraries. These libraries are public and are supported in a JBoss EAP 7.x production environment.

Comments