How to achieve hot deployment in Tomcat 8?
Hot Deployment : deploy a new war with out using the following steps.
- Stop the server
- Replace the old war with new.
- Start the server.
Can I achieve this with out using ANT ?
How to achieve hot deployment in Tomcat 8?
Hot Deployment : deploy a new war with out using the following steps.
Can I achieve this with out using ANT ?
A hot deployment means storing a new war file in the appBase directory. You can do that with an ANT task as suggested by the documentation, or any other way to send a file at this place ( scp from one machine to another, move the file if it's local,..)