HosLogRouteBuilder.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. package com.yihu.hos.logger.camel.route;
  2. import com.yihu.hos.logger.configuration.LoggerConfiguration;
  3. import org.apache.activemq.ActiveMQConnectionFactory;
  4. import org.apache.camel.builder.RouteBuilder;
  5. import org.apache.camel.component.jms.JmsComponent;
  6. import org.apache.camel.model.ModelCamelContext;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Component;
  9. import javax.jms.ConnectionFactory;
  10. /**
  11. * Created by l4qiang on 2017-04-14.
  12. */
  13. @Component
  14. public class HosLogRouteBuilder extends RouteBuilder {
  15. static public final String DESTINATION_NAME = "business-log-hos";
  16. private static final String QUEUE_NAME = "business.log.queue";
  17. @Autowired
  18. private LoggerConfiguration loggerConfiguration;
  19. @Override
  20. public void configure() throws Exception {
  21. ModelCamelContext context = this.getContext();
  22. ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(
  23. loggerConfiguration.getActiveMqUser(), loggerConfiguration.getActiveMqPassword(), loggerConfiguration.getBrokerURL());
  24. // Note we can explicit name the component
  25. context.addComponent(DESTINATION_NAME, JmsComponent.jmsComponentAutoAcknowledge(connectionFactory));
  26. from(DESTINATION_NAME + ":topic:" + QUEUE_NAME)
  27. .to("bean:businessLogService?method=log");
  28. }
  29. }