You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2008/02/13 21:43:08 UTC

[jira] Resolved: (CXF-1425) Enhancement to JAX-RS spring configuration for registering providers

     [ https://issues.apache.org/jira/browse/CXF-1425?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-1425.
------------------------------

    Resolution: Fixed
      Assignee: Daniel Kulp  (was: Jervis Liu)

Patch applied (with some minor tweeks)

> Enhancement to JAX-RS spring configuration for registering providers
> --------------------------------------------------------------------
>
>                 Key: CXF-1425
>                 URL: https://issues.apache.org/jira/browse/CXF-1425
>             Project: CXF
>          Issue Type: Sub-task
>          Components: REST
>    Affects Versions: 2.1
>            Reporter: Barry Fitzgerald
>            Assignee: Daniel Kulp
>             Fix For: 2.1
>
>         Attachments: CXF-1425.patch, CXF-1425.patch
>
>   Original Estimate: 4h
>  Remaining Estimate: 4h
>
> Enhancement to allow a list of custom providers be specified for a spring configured JAX-RS server. Syntax as below:
> <jaxrs:server id="bookservice"
> 		        address="/">
>     <jaxrs:serviceBeans>
>       <ref bean="bookstore"/>
>     </jaxrs:serviceBeans>
>     <jaxrs:entityProviders>
> 			<bean class="org.apache.cxf.jaxrs.provider.JAXBElementProvider"/>
> 			<bean class="org.apache.cxf.jaxrs.provider.StringProvider"/>
> 			<bean class="org.apache.cxf.jaxrs.provider.BadgerFishProvider"/>
> 	</jaxrs:entityProviders>		   
>   </jaxrs:server>
>   <bean id="bookstore" scope="prototype" class="org.apache.cxf.systest.jaxrs.BookStore">
>   </bean>
> This list will overwrite the default Entity Provider list and will be ordered as usual.

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