I am using Tomcat 8.5 and eclipse 4.6.3 to develop a spring application. Every time when I change the code, I need to restart the server. I tried to change the context.xml file reloadable="true"
and autoDeploy="true"
. But still I need to restart the server after modifying codes.
Here the changed context.xml file's code,
<Context docBase="regSpring" path="/regSpring" reloadable="true" autoDeploy="true">
And I tried another method which is, double click on server->publishing->select "automatically publish when resources change".