[jboss-jira] [JBoss JIRA] (WFLY-3200) Support Jackson 2 out of the box

Tomaz Cerar (JIRA) issues at jboss.org
Tue Apr 1 15:01:13 EDT 2014


     [ https://issues.jboss.org/browse/WFLY-3200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tomaz Cerar updated WFLY-3200:
------------------------------

    Description: 
Wildfly can be configured to allow access to the native Jackson API.  In order to accomplish this, you have to add a jboss-deployment-structure.xml that contains the following:
{code:xml}
<jboss-deployment-structure>
    <deployment>
        <exclusions>
            <module name="org.jboss.resteasy.resteasy-jackson-provider"/>
        </exclusions>
        <dependencies>
            <module name="org.jboss.resteasy.resteasy-jackson2-provider" services="import"/>
        </dependencies>
    </deployment>
</jboss-deployment-structure>
{code}
It would be better if Jackson 2 were the default provider and this were not necessary.

  was:
Wildfly can be configured to allow access to the native Jackson API.  In order to accomplish this, you have to add a jboss-deployment-structure.xml that contains the following:

<jboss-deployment-structure>
    <deployment>
        <exclusions>
            <module name="org.jboss.resteasy.resteasy-jackson-provider"/>
        </exclusions>
        <dependencies>
            <module name="org.jboss.resteasy.resteasy-jackson2-provider" services="import"/>
        </dependencies>
    </deployment>
</jboss-deployment-structure>

It would be better if Jackson 2 were the default provider and this were not necessary.


    
> Support Jackson 2 out of the box
> --------------------------------
>
>                 Key: WFLY-3200
>                 URL: https://issues.jboss.org/browse/WFLY-3200
>             Project: WildFly
>          Issue Type: Feature Request
>      Security Level: Public(Everyone can see) 
>          Components: REST
>    Affects Versions: 8.0.0.Final
>            Reporter: Nathaniel A. Johnson
>            Assignee: Stuart Douglas
>            Priority: Minor
>
> Wildfly can be configured to allow access to the native Jackson API.  In order to accomplish this, you have to add a jboss-deployment-structure.xml that contains the following:
> {code:xml}
> <jboss-deployment-structure>
>     <deployment>
>         <exclusions>
>             <module name="org.jboss.resteasy.resteasy-jackson-provider"/>
>         </exclusions>
>         <dependencies>
>             <module name="org.jboss.resteasy.resteasy-jackson2-provider" services="import"/>
>         </dependencies>
>     </deployment>
> </jboss-deployment-structure>
> {code}
> It would be better if Jackson 2 were the default provider and this were not necessary.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jboss-jira mailing list