I am in the process of migrating an old model 1 java based website, to use an under development restful-api (with the long term goal of providing a PaaS and any oth
You could use an Apache httpd, nginx or the like, and route URLs accordingly.
I dont think it is possible straight away as Tomcat starts different war files in different context paths. Only thing I can think of is deploying myRest.war and mySecondWarFile.war and adding a mapping for /ThirdMethod
in myRest application itself and routing the request to /mySecondWar/ThirdMethod
.