An open API service indexing awesome lists of open source software.

https://github.com/dimmaryanto93/springboot-jms-activemq-example

Belajar Messaging with Springboot
https://github.com/dimmaryanto93/springboot-jms-activemq-example

activemq jms springboot

Last synced: about 2 months ago
JSON representation

Belajar Messaging with Springboot

Awesome Lists containing this project

README

          

# Point to Point Method

run the application:

```bash
cd queue-example

mvn clean spring-boot:run
```

send message:

```bash
curl -X POST \
http://localhost:8080/message/send \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d ' {
"value": "message to send",
"data" : "addon message"
}'
```

## Arsitektur application

![arsitketur queue](imgs/point-to-point-arsitektur.jpg)