I am working with a Java web application and I would like to have a reverse proxy masking some of my internal endpoints.
Requirements
1. The reverse proxy maps need to be modifiable at runtime e.g if we move some components to another server we should be able to modify the mapping such that new requests are routed to this endpoint.
2. This must be embeddable to a standard servlet container like Jetty.
Most of the Java Reverse Proxies out there such as J2EP require mapping information available prior to starting the application.