I am looking for an option to deploy exploded war in Tomcat using the context file in /var/tomcat/server/conf/Catalina/localost/myapp.xml
where myapp.xml is like
<Context appBase="/opt/dist/myapp/" debug="0" crossContext="true" />
But it is not loading the myapp application.
It works fine when I use docBase pointing to myapp.war
<Context docBase="/opt/dist/myapp.war" debug="0" crossContext="true" />
Does Tomcat support loading exploded war using Context/appBase?
{CATALINA}/webapps/ROOT/WEB-INF/
folder and have another try – user5266804