estarter / jms-spring-camel-demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JMS Spring Camel demo

This project illustrate how to integrate camel routes for jms (ActiveMQ) queues in spring project.

Note: as of today (28 apr 2018) camel does not support spring-boot 2.

The app contains "default" camel routes defined in resources/camel.xml. It's possible to overwrite it by route property in application.properties file, i.e. it's possible to customize routing on deployed application.

How to run ActiveMQ

To run an ActiveMQ broker one can use a docker container:

docker run --name='activemq' -it --rm \
    -e 'ACTIVEMQ_CONFIG_MINMEMORY=512' \
    -e 'ACTIVEMQ_CONFIG_MAXMEMORY=2048'\
    -p 8161:8161 -p 61616:61616 -p 61613:61613   webcenter/activemq:latest

ActiveMQ web interface will be available here , credendials: admin / admin

About


Languages

Language:Java 100.0%