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
- Host: GitHub
- URL: https://github.com/dimmaryanto93/springboot-jms-activemq-example
- Owner: dimMaryanto93
- Created: 2018-07-12T04:53:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T04:08:10.000Z (about 7 years ago)
- Last Synced: 2025-05-18T10:06:16.268Z (about 1 year ago)
- Topics: activemq, jms, springboot
- Language: Java
- Size: 651 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-POINT-TO-POINT.md
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
