Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmobaird/jms-manager
A Spring Boot app for managing your JMS queues in ActiveMQ
https://github.com/tmobaird/jms-manager
gradle java jms spring spring-boot
Last synced: about 1 month ago
JSON representation
A Spring Boot app for managing your JMS queues in ActiveMQ
- Host: GitHub
- URL: https://github.com/tmobaird/jms-manager
- Owner: tmobaird
- Created: 2018-10-14T17:59:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T16:47:22.000Z (over 6 years ago)
- Last Synced: 2024-10-27T16:57:51.762Z (3 months ago)
- Topics: gradle, java, jms, spring, spring-boot
- Language: Java
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JMS Manager
A spring boot application that allows you to manage different aspects of your JMS queues.
The application allows for similar abilities that the ActiveMQ web app provides.
### Tech Stack
- Java
- Gradle
- Spring
- Spring Boot Web
- Thymeleaf
- JUnit
- Mockito### Todo (API)
- [x] Get queue info
- [x] Get number of messages in queue
- [x] Get queue size in KB
- [x] Get all messages in queue
- [x] Get a single message in queue (by JMS message id)
- [x] Create message in queue
- [x] Delete message in queue
- [ ] Move message in queue to another queue
- [ ] Move all messages in queue to another queue
- [x] Purge queue- [ ] Test config for in memory ActiveMQ
- [ ] Better handle non 200s
- [ ] Testing controllers?