Tomcat autoredeploy not working in legacyAppBase

92 Views Asked by At

I have old java application. I need to deploy it into tomcat 10. It works only if I move file to webapps-javaee and restart tomcat. But I do not want to manually restart tomcat each time.

If I only copy new .war file into webapps-javaee folder(without tomcat restart), tomcat does nothing. Also nothing in logs.

Is there a way to use tomcat autoDeploy feature in webapps-javaee folder?

My server.xml configuration looks like this:

  <Host 
    name="localhost" 
    appBase="webapps" 
    legacyAppBase="webapps-javaee" 
    unpackWARs="true" 
    autoDeploy="true">
  </Host>
0

There are 0 best solutions below