We have this application that has one method for POSTs and one method for GETs:
GET: http://localhost:8080/MyAPP/rest/clients/clientid/
POST: http://localhost:8080/MyAPP/rest/incoming/clientid/
The two methods are very distinct processes, so we want to separate them into two separate applications for simpler change deployments. Unfortunately we already have upstream and downstream client applications in production and so can't change the URLs in any way. Is there a way in Tomcat to make that happen?
RewriteValvesimilar to Apache's mod_rewrite to map the urls to different applications.