use of org.apache.camel.component.sjms.batch.SjmsBatchComponent in project camel by apache.
the class ManualBatchFromQueueTest method createCamelContext.
@Override
protected CamelContext createCamelContext() throws Exception {
SimpleRegistry registry = new SimpleRegistry();
registry.put("testStrategy", new ListAggregationStrategy());
CamelContext camel = new DefaultCamelContext(registry);
SjmsBatchComponent sjms = new SjmsBatchComponent();
sjms.setAsyncStartListener(true);
log.info("Using live connection to existing ActiveMQ broker running on {}", url);
sjms.setConnectionFactory(new ActiveMQConnectionFactory(url));
camel.addComponent("sjms-batch", sjms);
return camel;
}
use of org.apache.camel.component.sjms.batch.SjmsBatchComponent in project camel by apache.
the class SjmsBatchComponentAutoConfiguration method configureSjmsBatchComponent.
@Lazy
@Bean(name = "sjms-batch-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(SjmsBatchComponent.class)
public SjmsBatchComponent configureSjmsBatchComponent(CamelContext camelContext, SjmsBatchComponentConfiguration configuration) throws Exception {
SjmsBatchComponent component = new SjmsBatchComponent();
component.setCamelContext(camelContext);
Map<String, Object> parameters = new HashMap<>();
IntrospectionSupport.getProperties(configuration, parameters, null, false);
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
Object value = entry.getValue();
Class<?> paramClass = value.getClass();
if (paramClass.getName().endsWith("NestedConfiguration")) {
Class nestedClass = null;
try {
nestedClass = (Class) paramClass.getDeclaredField("CAMEL_NESTED_CLASS").get(null);
HashMap<String, Object> nestedParameters = new HashMap<>();
IntrospectionSupport.getProperties(value, nestedParameters, null, false);
Object nestedProperty = nestedClass.newInstance();
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), nestedProperty, nestedParameters);
entry.setValue(nestedProperty);
} catch (NoSuchFieldException e) {
}
}
}
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), component, parameters);
return component;
}
Aggregations