{"id":18760832,"url":"https://github.com/sarakhild/reactive-apis-micorservices","last_synced_at":"2026-04-27T08:32:05.212Z","repository":{"id":165876096,"uuid":"562769597","full_name":"SaraKhild/Reactive-APIs-Micorservices","owner":"SaraKhild","description":"This project simplify the Spring WebFlux MicroServices and  WebClient Integration.","archived":false,"fork":false,"pushed_at":"2023-10-21T10:54:39.000Z","size":151,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-20T17:50:44.592Z","etag":null,"topics":["java","microservices","springboot","springwebflux","webclient"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SaraKhild.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-11-07T08:14:01.000Z","updated_at":"2023-08-22T08:24:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"1c60b80a-5442-4bec-817d-b99b05d31237","html_url":"https://github.com/SaraKhild/Reactive-APIs-Micorservices","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SaraKhild/Reactive-APIs-Micorservices","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaraKhild%2FReactive-APIs-Micorservices","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaraKhild%2FReactive-APIs-Micorservices/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaraKhild%2FReactive-APIs-Micorservices/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaraKhild%2FReactive-APIs-Micorservices/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SaraKhild","download_url":"https://codeload.github.com/SaraKhild/Reactive-APIs-Micorservices/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaraKhild%2FReactive-APIs-Micorservices/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32329463,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","microservices","springboot","springwebflux","webclient"],"created_at":"2024-11-07T18:14:01.501Z","updated_at":"2026-04-27T08:32:05.183Z","avatar_url":"https://github.com/SaraKhild.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Movie Reactive API MicroService\n\u003cbr\u003e\n\n## Overview\n In this project I built MicroServices using the concept of Spring WebFlux where communicating with each other by WebClient and handling requests.\n \u003cbr\u003e\n \n## Usages\n- SpringBoot\n- Spring WebFlux\n- WebClient\n- JUnit5 test\n- Mongodb\n  \n\u003cbr\u003e \n\n## Architecture of the Project\n\n ### 1-src folder\n \n  - MovieInfo\n    - controllers folder\n    - models folder\n    - services folder\n    - repositories\n    \n  - MovieReview\n    - exceptions folder\n    - handlers folder\n    - models folder\n    - services folder\n    - repositories folder\n    - routers folder\n    \n  - Movie\n    - Client folder\n    - controllers folder\n    - exceptions folder\n    - handlers folder   \n    - models folder\n\n### 2-Maven pom.xml\n\u003cbr\u003e\n\n  - MoiveInfo and MovieReview pom.xml:   \n    \n```\n \u003cdependencies\u003e\n\t\u003cdependency\u003e\n\t   \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t   \u003cartifactId\u003espring-boot-starter-webflux\u003c/artifactId\u003e\n        \u003c/dependency\u003e\n  \n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eio.projectreactor\u003c/groupId\u003e\n          \u003cartifactId\u003ereactor-test\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n  \n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.projectlombok\u003c/groupId\u003e\n\t  \u003cartifactId\u003elombok\u003c/artifactId\u003e\n\t  \u003cversion\u003e1.18.20\u003c/version\u003e\n\t  \u003cscope\u003eprovided\u003c/scope\u003e\n\t\u003c/dependency\u003e\n  \n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t  \u003cartifactId\u003espring-boot-starter-data-mongodb-reactive\u003c/artifactId\u003e\n\t  \u003cversion\u003e2.7.4\u003c/version\u003e\n\t\u003c/dependency\u003e\n\n\t\u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t  \u003cartifactId\u003espring-boot-starter-test\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t  \u003cexclusions\u003e\n\t    \u003cexclusion\u003e\n\t\t\u003cgroupId\u003ejunit\u003c/groupId\u003e\n\t\t\u003cartifactId\u003ejunit\u003c/artifactId\u003e\n\t    \u003c/exclusion\u003e\n\t \u003c/exclusions\u003e\n\t\u003c/dependency\u003e\n  \n\t\u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.junit.jupiter\u003c/groupId\u003e\n\t  \u003cartifactId\u003ejunit-jupiter-engine\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n\n\t\u003cdependency\u003e\n\t  \u003cgroupId\u003eio.projectreactor\u003c/groupId\u003e\n\t  \u003cartifactId\u003ereactor-test\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n        \u003c/dependency\u003e\n  \n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t  \u003cartifactId\u003espring-boot-starter-validation\u003c/artifactId\u003e\n\t  \u003cversion\u003e2.7.4\u003c/version\u003e\n\t\u003c/dependency\u003e\n\u003c/dependencies\u003e\n ```\n\u003cbr\u003e\n \n  - Movie pom.xml:  \n```\n\u003cdependencies\u003e\n\t \u003cdependency\u003e\n\t    \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t    \u003cartifactId\u003espring-boot-starter-webflux\u003c/artifactId\u003e\n\t\u003c/dependency\u003e\n\n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t  \u003cartifactId\u003espring-boot-starter-test\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n \n        \u003cdependency\u003e\n\t    \u003cgroupId\u003eorg.springframework.cloud\u003c/groupId\u003e\n\t    \u003cartifactId\u003espring-cloud-contract-wiremock\u003c/artifactId\u003e\n\t    \u003cversion\u003e3.1.4\u003c/version\u003e\n\t\u003c/dependency\u003e\n\n\t\u003cdependency\u003e\n\t   \u003cgroupId\u003ecom.github.tomakehurst\u003c/groupId\u003e\n\t   \u003cartifactId\u003ewiremock-jre8\u003c/artifactId\u003e\n\t   \u003cversion\u003e2.34.0\u003c/version\u003e\n\t   \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n\n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eio.projectreactor\u003c/groupId\u003e\n\t  \u003cartifactId\u003ereactor-test\u003c/artifactId\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n\t\n\t\u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.projectlombok\u003c/groupId\u003e\n\t  \u003cartifactId\u003elombok\u003c/artifactId\u003e\n\t  \u003cversion\u003e1.18.20\u003c/version\u003e\n\t  \u003cscope\u003eprovided\u003c/scope\u003e\n\t\u003c/dependency\u003e\n \n        \u003cdependency\u003e\n\t  \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t  \u003cartifactId\u003espring-boot-starter-data-mongodb-reactive\u003c/artifactId\u003e\n\t  \u003cversion\u003e2.7.4\u003c/version\u003e\n\t\u003c/dependency\u003e\n\n\t\u003cdependency\u003e\n\t  \u003cgroupId\u003ecom.github.tomakehurst\u003c/groupId\u003e\n\t  \u003cartifactId\u003ewiremock-standalone\u003c/artifactId\u003e\n\t  \u003cversion\u003e2.27.2\u003c/version\u003e\n\t  \u003cscope\u003etest\u003c/scope\u003e\n\t\u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n### 3-Application.properties.yml\n\n```\nspring:\n    data:\n       mongodb:\n         database: moviedb\n         host: localhost\n         port: 27017\n\nspring.datasource.username: moviedb\nspring.datasource.password: nFLhPPKOnkW1FA1e\nspring.data.mongodb.auto-index-creation: \"true\" \n\n ```\n ## Let's Start :mechanical_arm:\n### Run the program\n\u003cbr\u003e\n\n\n  * 1- run MovieInfo and add information on postman\n  \u003cimg width=\"750\" alt=\"movieInfo-get\" src=\"https://user-images.githubusercontent.com/67427643/214279762-ddb80a1c-e63e-48eb-a4ef-c58a38fb6c2c.png\"\u003e\n\n  * 2- run MovieReview and add information on postman\n  \u003cimg width=\"767\" alt=\"movieReview-get\" src=\"https://user-images.githubusercontent.com/67427643/214281321-1cf3f998-7250-420e-8747-20f348b633c1.png\"\u003e\n  \n  * 3- run Movie to get information and review about movie by id on postman\n  \u003cimg width=\"761\" alt=\"movie-get\" src=\"https://user-images.githubusercontent.com/67427643/214282384-c41c1c48-8884-41b0-ab67-821cf07d2a74.png\"\u003e\n  \n---\n\u003cbr\u003e\n\n### Good Luck \u003cimg src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"30px\"\u003e \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsarakhild%2Freactive-apis-micorservices","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsarakhild%2Freactive-apis-micorservices","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsarakhild%2Freactive-apis-micorservices/lists"}