I am doing an upgrade from older version of tomcat to 8.5.29
I have a tomcat server with WAR file and exploded folder
tomcat8/webapps/xerox.war and tomcat8/webapps/xerox
The exploded folder contains patches that doesn't exist in the WAR
I would like tomcat to use only the exploded folder and ignore the WAR file.
So in server.xml, on the Host section I set the unpackWARs to true, and autoDeploy to false,
It seems like its not working ok, and stuff in the exploded folder gets overridden / deleted after restart.
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="false">
What am I doing wrong?