Skip to main content

Posts

Showing posts with the label modules

Tomcat modules classes auto reload and published in Tomcat Server when changes made to the web project

Tomcat modules classes auto reload and published in Tomcat Server when changes made to the web project When using the spring tool suite, you will have the ability to auto-reload modules and auto-publish the updated project in tomcat server whenever you made changes to the codes in your web project. To enable this feature, double-click your Tomcat server instance in the "Servers" tab in the IDE, and do the following steps: 1. Check the option "Modules auto-reload by default" under the "Server Options" section (or check the "Enable Java-agent reload behavior" option under the "Application reload behavior section", depending on your IDE) 2. Select the radio option "Automatically publish when resources change" under the "Publish" section Now restart your Tomcat server, and whenever you made changes to your code, your changes will be immediately reflected on the changes in the web pages. Note that if you do not have the o...