| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is an example project on how to build microservices with Oat++ Web Framework, and how to utilize the Monolithization feature.
See more:
For more information about this example, see the Monolithization article.
|- user-service/ // User-Service source code |- book-service/ // Book-Service source code |- facade/ // Facade source code |- monolith/all-services/ // Monolithic config to build all services as a Monolith |- build_all.sh // Utility script. Build all services |- run_all_microservices.sh // Utility script. Run all services as separate applications
$ ./build_all.sh $ ./run_all_microservices.sh $ ./monolith/all-services/build/all-services-exeFacade takes book info from book-service, user info from user-service, merges data, and returns to the client.
$ curl http://localhost:8000/books/4
{"id": 4, "title": "1984", "author": {"id": 4, "name": "George Orwell"}}
| Back | FazBrowse Home | New Git URL |