Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkabumattar/prest
prest is a text-saving application for your various needs.
https://github.com/mkabumattar/prest
java microservices spring-cloud spring-mvc
Last synced: about 2 months ago
JSON representation
prest is a text-saving application for your various needs.
- Host: GitHub
- URL: https://github.com/mkabumattar/prest
- Owner: MKAbuMattar
- License: gpl-3.0
- Created: 2022-04-19T01:01:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T11:19:48.000Z (almost 3 years ago)
- Last Synced: 2024-11-03T07:48:23.606Z (3 months ago)
- Topics: java, microservices, spring-cloud, spring-mvc
- Language: Java
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prest
prest is a text-saving application for your various needs.
***
## prest
Microservice architectures are quickly becoming the
"new normal." Building tiny, self-contained,
ready-to-run apps may provide your code with
a lot more flexibility and robustness. Many
purpose-built capabilities in Spring Boot make
it simple to design and run microservices in
production at scale. This app just depicts
the microservices' structure.## microservices' order
- utility-service
- entity-service
- eureka-service
- zuul-service
- prest-service## Setup Instructions
```bash
git clone https://github.com/MKAbuMattar/prest
cd prest
```***
> NOTE : change an application.properties data to match your work environment.
## Running the Application
```bash
# first, need to install all dependencies.
mvn clean install
mvn clean compile
mvn clean package# run the microservices' by order
## eureka-service
java -jar ./eureka-service/target/eureka-service-0.0.1-SNAPSHOT.jar## zuul-service
java -jar ./zuul-service/target/zuul-service-0.0.1-SNAPSHOT.jar## prest-service
java -jar ./prest-service/target/prest-service-0.0.1-SNAPSHOT.jar```