Details
Description
Suppose that you are using JAXRSClientFactoryBean to create a new client. You may call some code like this:
JAXRSClientFactoryBean bean = new JAXRSClientFactoryBean(); bean.setAddress(baseUri); bean.setServiceClass(aClass); bean.setProviders(asList(new SomeFeature())); bean.setProperties(properties); return bean.create(aClass);
If your SomeFeature registers additional providers, then those providers are never considered for use on the proxy or WebClient instance created.
Attachments
Issue Links
- relates to
-
CXF-7549 Can't register Feature from inside another Feature in JAX-RS
- Closed
- links to