Route forwarding server proxy - #119
Merged
Merged
Conversation
fmazmz
marked this pull request as ready for review
February 23, 2026 15:07
kristinaxm
self-requested a review
February 23, 2026 17:11
kristinaxm
approved these changes
Feb 23, 2026
jesperlarsson1910
approved these changes
Feb 23, 2026
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.
Whats new?
ProxyRoute.javaholds a mapping of a basePath and its respective target upstream URL.The mappings are added in application-properties.yml and loaded through the ConfigLoader, stored as ProxyRoute objects.
ProxyPlugin.java, for each ProxyRoute object, we initialize a new ProxyPlugin.The plugin handles the following:
-Logs the incoming request from the client.
-Constructs a new HttpRequest and copies the headers, body, and method from the initial Client request.
-Proxies the new request through an HttpClient to the target server URL.
-Handles and returns the upstream server response and returns it back to the client.
HttpStatus.java (ENUM)holds the most common Http Status Codes and their respective String description. Allows us to easily translate the statusCode from the upstream server response and dynamically relay an http status text to the client.Integration tests and Unit tests added for ProxyPlugin to test most basic scenarios, both with a real HttpClient and a mock.
One proxy route added to the server config as following:
How to run an example request to test the proxy?
https://jsonplaceholder.typicode.com/The request should be proxied to the external server.
Resources
JSONPlaceholder comes with a set of 6 common resources:
closes #111
@coderabbitai ignore