Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romanow/artemis-jms
Example for using JMS with Spring Boot
https://github.com/romanow/artemis-jms
artemis-mq java jms-client
Last synced: 4 days ago
JSON representation
Example for using JMS with Spring Boot
- Host: GitHub
- URL: https://github.com/romanow/artemis-jms
- Owner: Romanow
- Created: 2022-02-10T13:08:01.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T13:05:46.000Z (6 months ago)
- Last Synced: 2024-11-16T16:18:52.480Z (2 months ago)
- Topics: artemis-mq, java, jms-client
- Language: Java
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple JMS application
[![Build project](https://github.com/Romanow/artemis-jms/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/Romanow/artemis-jms/actions/workflows/build.yml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)## Start Artemis in Docker
```shell
$ docker compose up -d
```Из-за проблемы [AMQ212054 Destination address is blocked](https://stackoverflow.com/a/53836629/5649869) используется
донастройка конфигурации Artemis: меняется параметр `max-disk-usage = 100`.Описание
из [документации](https://activemq.apache.org/components/artemis/documentation/latest/paging.html#max-disk-usage):> Max Disk Usage
> The System will perform scans on the disk to determine if the disk is beyond a configured limit. These are configured
> through max-disk-usage in percentage. Once that limit is reached any message will be blocked. (unless the protocol
> doesn't support flow control on which case there will be an exception thrown and the connection for those clients
> dropped).## Start Java application
```shell
$ ./gradlew clean build
$ ./gradlew bootRun
```По-умолчанию приложение создает очередь `my-queue` и раз в 5 секунд отправляет туда сообщения
вида: `Hello queue world " + now().format(ISO_LOCAL_DATE_TIME)`Для задания настроек нужно в скрипт запуска передать параметры через `--args='...'`:
```shell
$ ./gradlew bootRun --args='--messaging.message="Hello, World!" --messaging.queue-name="default-queue" --broker-url=tcp://artemis:61616'
```Все доступные настройки:
```
Simple Java application for JMS messaging in Artemis--broker-url set broker url (default [tcp://127.0.0.1:61616])
--broker-username set broker url (default [admin])
--broker-password set broker password (default [admin])
--messaging.queue-name set queue name (default 'my-queue')
--messaging.message set message text (default 'hello, world + timestamp')
--messaging.properties.= set properties
--help print help message
```## Consume from Artemis UI
Для получения сообщений из очереди через [Artemis UI](http://localhost:8161/console) -> `Queue` -> `my-queue`
-> `opeartions` -> `browse()`.