use of org.apache.camel.component.jms.JmsComponent in project camel by apache.
the class JmsReconnectTest method testRequestReply.
/**
* This test is disabled as the problem can currently not be reproduced using ActiveMQ.
* TODO Find a way to recreate the problem with ActiveMQ and fully automate the test
* @throws Exception
*/
@Ignore
@Test
public void testRequestReply() throws Exception {
BrokerService broker = new BrokerService();
broker.addConnector("tcp://localhost:61616");
broker.setPersistent(false);
broker.setTimeBeforePurgeTempDestinations(1000);
broker.start();
DefaultCamelContext context = new DefaultCamelContext();
JmsComponent jmsComponent = new JmsComponent();
/**
*
*/
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory();
connectionFactory.setBrokerURL("failover://(tcp://localhost:61616)?maxReconnectAttempts=1");
/**
* When using Tibco EMS the problem can be recreated. As the broker is
* external it has to be stopped and started by hand.
*/
// TibjmsConnectionFactory connectionFactory = new TibjmsConnectionFactory();
// connectionFactory.setReconnAttemptCount(1);
jmsComponent.setConnectionFactory(connectionFactory);
jmsComponent.setRequestTimeout(1000);
jmsComponent.setReceiveTimeout(1000);
context.addComponent("jms", jmsComponent);
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("jms:testqueue").bean(new EchoServiceImpl());
from("direct:test").to("jms:testqueue");
}
});
CamelBeanPostProcessor processor = new CamelBeanPostProcessor();
processor.setCamelContext(context);
processor.postProcessBeforeInitialization(this, "this");
context.start();
String ret = proxy.echo("test");
Assert.assertEquals("test", ret);
broker.stop();
/**
* Wait long enough for the jms client to do a full reconnect. In the
* Tibco EMS case this means that a Temporary Destination created before
* is invalid now
*/
Thread.sleep(5000);
System.in.read();
broker.start(true);
/**
* Before the fix to this issue this call will throw a spring UncategorizedJmsException
* which contains an InvalidJmsDestination
*/
String ret2 = proxy.echo("test");
Assert.assertEquals("test", ret2);
}
use of org.apache.camel.component.jms.JmsComponent in project camel by apache.
the class JmsPassThroughtJmsKeyFormatStrategyTest method createCamelContext.
protected CamelContext createCamelContext() throws Exception {
CamelContext camelContext = super.createCamelContext();
ConnectionFactory connectionFactory = CamelJmsTestHelper.createConnectionFactory();
// configure to use passthrough
JmsComponent activemq = jmsComponentAutoAcknowledge(connectionFactory);
activemq.setJmsKeyFormatStrategy("passthrough");
camelContext.addComponent("activemq", activemq);
return camelContext;
}
use of org.apache.camel.component.jms.JmsComponent in project camel by apache.
the class JmsTransactedDeadLetterChannelHandlerRollbackOnExceptionTest method createCamelContext.
protected CamelContext createCamelContext() throws Exception {
CamelContext camelContext = super.createCamelContext();
// no redeliveries
ConnectionFactory connectionFactory = CamelJmsTestHelper.createConnectionFactory(null, 0);
JmsComponent component = jmsComponentTransacted(connectionFactory);
camelContext.addComponent("activemq", component);
return camelContext;
}
use of org.apache.camel.component.jms.JmsComponent in project camel by apache.
the class JmsTransactedOnExceptionRollbackOnExceptionTest method createCamelContext.
protected CamelContext createCamelContext() throws Exception {
CamelContext camelContext = super.createCamelContext();
// no redeliveries
ConnectionFactory connectionFactory = CamelJmsTestHelper.createConnectionFactory(null, 0);
JmsComponent component = jmsComponentTransacted(connectionFactory);
camelContext.addComponent("activemq", component);
return camelContext;
}
use of org.apache.camel.component.jms.JmsComponent in project camel by apache.
the class JmsComponentAutoConfiguration method configureJmsComponent.
@Lazy
@Bean(name = "jms-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(JmsComponent.class)
public JmsComponent configureJmsComponent(CamelContext camelContext, JmsComponentConfiguration configuration) throws Exception {
JmsComponent component = new JmsComponent();
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