https://github.com/shubhamv108/spring-boot-demo-jms
https://github.com/shubhamv108/spring-boot-demo-jms
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shubhamv108/spring-boot-demo-jms
- Owner: shubhamv108
- Created: 2024-03-13T03:16:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-13T03:23:07.000Z (over 1 year ago)
- Last Synced: 2025-01-29T22:44:46.543Z (9 months ago)
- Language: Java
- Size: 72.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Environment:
- Spring Boot version: 3.2.1## Requirements:
JMS works by sending messages to a message destination, which are then taken by message receiver. Scheduling can be used to make certain code run at a specified time period. This project deals with sending and receiving messages at a scheduled time.## Commands
- run:
```bash
./gradlew clean build -DskipTests && java -jar build//libs/spring-boot-demo-jms-0.0.1.jar
```
- install:
```bash
./gradlew clean build
```
- test:
```bash
./gradlew clean test
```