How to deploy external webapp in tomcat?

#tomcat
author's avatar
Kees de Kooter
Today 12:32

You should create a myapp.xml file for this app and place it in %TOMCAT_HOME%\conf\Catalina\localhost.

The file looks something like this:

<Context displayName="myapp" 
     docBase="C:/app/myapp"
     path="/myapp"
     reloadable="true" />