https://github.com/keuller/spring-microservices
Simple Microservices example using Spring Boot, Eureka, Zuul and Reactor
https://github.com/keuller/spring-microservices
Last synced: 7 months ago
JSON representation
Simple Microservices example using Spring Boot, Eureka, Zuul and Reactor
- Host: GitHub
- URL: https://github.com/keuller/spring-microservices
- Owner: keuller
- Created: 2015-06-19T13:51:28.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-19T14:15:55.000Z (almost 10 years ago)
- Last Synced: 2024-03-17T16:10:48.424Z (about 1 year ago)
- Language: Java
- Size: 35 MB
- Stars: 3
- Watchers: 6
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Spring Boot Microservices
=========================This is a simple microservices appications that demonstrate how to implement service discovery through Eureka.
There are simple two microservices projects.
Eureka Server
-------------To start Eureka server, into `eureka-server` folder, type:
```
$ mvn clean spring-boot:run
```
The server will be available in 9001 port. Just point out your browser `http://localhost:90001`.Zuul Server
-----------
To start Zuul server, into `zuul-server` folder, type:
```
$ mvn clean spring-boot:run
```
The server will be available in 9002 port.Grupos and Contatos microservice
--------------------------------
These are two simple implementation of microservices. They're using Spring Reactor to implement some reactive concepts using request/reply pattern.To start each microservice, inside of project folder, just type:
```
$ mvn clean spring-boot:run
```
You will see each microservice will register itlsef in Eureka server automatically.Any feedback will be welcome.