Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rogervinas/spring-boot-camel-activemq-artemis
🐪 Spring Boot + Apache Camel + ActiveMQ Artemis
https://github.com/rogervinas/spring-boot-camel-activemq-artemis
activemq-artemis apache-camel spring-boot
Last synced: 30 days ago
JSON representation
🐪 Spring Boot + Apache Camel + ActiveMQ Artemis
- Host: GitHub
- URL: https://github.com/rogervinas/spring-boot-camel-activemq-artemis
- Owner: rogervinas
- Created: 2024-03-08T09:38:47.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-09-30T14:57:41.000Z (about 2 months ago)
- Last Synced: 2024-10-06T03:51:35.224Z (about 1 month ago)
- Topics: activemq-artemis, apache-camel, spring-boot
- Language: Java
- Homepage:
- Size: 124 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![CI](https://github.com/rogervinas/spring-boot-camel-activemq-artemis/actions/workflows/ci.yml/badge.svg)](https://github.com/rogervinas/spring-boot-camel-activemq-artemis/actions/workflows/ci.yml)
![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black)
![SpringBoot](https://img.shields.io/badge/SpringBoot-3.3.4-blue?labelColor=black)
![ApacheCamel](https://img.shields.io/badge/ApacheCamel-4.8.0-blue?labelColor=black)
![ActiveMQ-Artemis](https://img.shields.io/badge/ActiveMQ--Artemis-2.37.0-blue?labelColor=black)# Spring Boot + Apache Camel + ActiveMQ Artemis
With SSL Dual Authentication 🚀
Documentation:
* [JMS SSL Dual Authentication Example](https://github.com/apache/activemq-artemis/tree/2.30.0/examples/features/standard/ssl-enabled-dual-authentication)
* [Docker - Overriding files in etc folder](https://activemq.apache.org/components/artemis/documentation/latest/docker.html#overriding-files-in-etc-folder)# Test
```shell
./gradlew check
```# Run
```shell
docker compose up -d
./gradlew bootRun
docker compose down
```ActiveMQ console at http://localhost:8161 (artemis/artemis)
# Build and Run Jar
```shell
docker compose up -d
./gradlew build
java -jar build/libs/spring-boot-camel-activemq-artemis-0.0.1-SNAPSHOT.jar
docker compose down
```