CXF Bus - Add HttpConduitFeature with custom timeouts
问题 I am trying to configure the CXF Bus, with common timeouts for all clients. For that, I am using HttpConduitFeature and adding it to the Bus during the initial configuration as below: @Configuration public class CxfContext { @Autowired private SoapConfigurations soapConfigurations; @Bean public Bus bus() { SpringBus b = new SpringBus(); List<Feature> features = ImmutableList.<Feature> builder() // .add(loggingFeature()) // .add(conduitFeature()) // .build(); b.setFeatures(features); return b;