Mirroring Apache Tomcat - Work

0

Explanation: Currently when we update our client's project it is "out of breath" during this update, the idea is to be able to update the project without stopping the client, I saw something related to tomcat WORK but nothing very explanatory, some functional examples with JBOSS however we will not use this type of container, I need a help or a way to make it work in Apache tomcat 8.5 or higher.

In some researches I saw that there were configurations in which the project had a faithful copy in the work and when it had the change in the main it just rewrote the work but everything worked there.     

asked by anonymous 08.05.2018 / 15:31

1 answer

1

Maybe you need Tomcat's Parallel Deployment .

The principle is basically to deploy versions of your application, eg:

  • system ## 001.war
  • system ## 002.war

Once this is done, your user will continue to access through the default url:

http://seudominio.com:8180/sistema

And Tomcat will do the job of directing you to the newest version.

The cat's leap is that users who are using the system will not even know what happened until they access the system again.

See more:

link

link

    
08.05.2018 / 16:38