[ 
https://issues.apache.org/jira/browse/CXF-2521?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12773472#action_12773472
 ] 

Sergey Beryozkin commented on CXF-2521:
---------------------------------------

Overriding createMarshaller is a good soultion but the simple one is just to do 
:

<bean id="jaxbProvider" 
class="org.apache.cxf.jaxrs.provider.JAXBElementProvider">
       <property name="marshallerProperties">
           <map>
             <entry>
<key>
<value>com.sun.xml.bind.namespacePrefixMapper</value>
</key>
<ref bean="NamespacePrefixMapper" />
</entry>
</map>
       </property>
 </bean> 

> Improvment for JAXBElementProvider for setting NamespacePrefixes
> ----------------------------------------------------------------
>
>                 Key: CXF-2521
>                 URL: https://issues.apache.org/jira/browse/CXF-2521
>             Project: CXF
>          Issue Type: Improvement
>          Components: JAX-RS
>    Affects Versions: 2.2.4
>            Reporter: Hasan Hosgel
>         Attachments: JAXBElementProvider.java
>
>
> We had the problem during our development, that we want to set the 
> NamespacePrefixes for the outgoing resources. For Json it working so far 
> good. But unforunately the org.apache.cxf.jaxrs.provider.JAXBElementProvider 
> does not offering something similar for setting the NamespaceMap. We did an 
> extension for the JAXBElementProvider and override the method 
> createMarshaller(...) from the 
> org.apache.cxf.jaxrs.provider.AbstractJAXBProvider and adding a method for 
> setting the NamespaceMap. Our solution is attached.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to