A few days ago this example was posted to the list for setting a property on a 
provider defined in web.xml without Spring:


 <init-param>
     <param-name>jaxrs.providers</param-name>
     <param-value>
         org.apache.cxf.jaxrs.provider.JSONProvider
         (writeXsiType=false)
     </param-value>
 </init-param>

Do I need to do anything special to make that functionality available to my own 
provider? How can I set multiple properties? Is this an Apache CXF specific 
feature?


         org.example.cxf.provider.MyProvider
         (hello=world,count=5)

Reply via email to