https://github.com/stylepatrick/spring-boot-activemq-messaging-demo
ActiveMQ Message Broker connection with JMS Template + WebMVC.
https://github.com/stylepatrick/spring-boot-activemq-messaging-demo
activemq message-broker spring-boot webmvc
Last synced: about 1 month ago
JSON representation
ActiveMQ Message Broker connection with JMS Template + WebMVC.
- Host: GitHub
- URL: https://github.com/stylepatrick/spring-boot-activemq-messaging-demo
- Owner: stylepatrick
- License: mit
- Created: 2021-09-23T14:52:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-23T14:52:28.000Z (over 4 years ago)
- Last Synced: 2025-06-14T21:04:58.660Z (12 months ago)
- Topics: activemq, message-broker, spring-boot, webmvc
- Language: Java
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-boot-activemq-messaging-demo
ActiveMQ Message Broker connection with JMS Template + WebMVC.
### Structure:
A HTTP request can be send to following endpoints:
- api/message/car/{name}/{brand}
- api/message/film/{name}/{releaseYear}
After receiving a request via WebMVC it gets forwarded to the ActiveMQ topic.
There is an listener active which checks if a new message is comming to the topic and will response to a response topic after reciving messages.
The property spring.jms.pub-sub-domain is set to true because topics are used instead of queues.