feat: implement Remote Procedure Invocation pattern (#2680) - #3551
Open
dileep98 wants to merge 1 commit into
Open
feat: implement Remote Procedure Invocation pattern (#2680)#3551dileep98 wants to merge 1 commit into
dileep98 wants to merge 1 commit into
Conversation
- Add RPI pattern demonstrating REST-based synchronous communication - Implement RpiService (Spring Boot REST controller) - Implement RpiClient (using RestTemplate) - Add comprehensive unit and integration tests - Add UML diagram and README documentation - Resolves iluwatar#2680
PR SummaryAdds a complete Remote Procedure Invocation pattern module demonstrating synchronous REST-based communication between microservices. Includes RpiService (Spring Boot REST controller), RpiClient (RestTemplate-based client), application bootstrap, comprehensive tests, UML diagram, and README documentation. Updates root POM to include the new module and centralizes dependencies for Spring Boot and testing. Changes
autogenerated by presubmit.ai |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Template
What does this PR do?
This PR implements the Remote Procedure Invocation (RPI) design pattern, demonstrating synchronous request/reply communication between microservices using REST over HTTP.
Implementation Details:
/greetendpointRestTemplateto make synchronous HTTP callsPattern Characteristics:
Fixes #2680