Latest changes are not reflected in servlet (tomcat)

The JSP files are not updating because they were precompiled, and even though they may pull information from files that have changed, each JSP file that may be affected needs to have a minor change made to it, like add a space and then remove a space, and then save it.

Then build your WAR, and then the updates should show. I went through this same problem tonight and none of the other answers helped. The key is, to check the file dates in the Tomcat directory of where you deployed the WAR. I noticed that even though I was deploying an entirely new cleaned WAR, and deleting all folders, there were still older cached files in there, probably because Eclipse keeps them to save compile time, thinking they don't have any changes.

Hope this helps


Go to Servers View in Eclipse:

Double click on your server. In my case, it’s Tomcat.

A Tomcat Web Module should pop up. Click on Modules tab at the very bottom (see Pic1)

Select your project. Click “Remove” button.

Pic 1: enter image description here

Now you should see a star next to the Tomcat Tab. That means you need to save your changes. So do a Control+S.

Pic 2: enter image description here

Right-click on your project in Project Explorer. Go to Maven -> Update Project…

Pic 3: enter image description here

Now this is the important part, make sure you have “Force Update of Snapshots/Releases” checked. Having that part checked is critical. Then click Ok.

Pic 4: enter image description here

Now look at your Server View. It should look like this, with a “Restart” warning telling you that it’s out of sync.

Pic 5: enter image description here

Right-click on it and choose Restart

Pic 6:

enter image description here

Let the server restart. Now if you go back to the Server View, you should see that it’s synchronized. That’s what you want. Like this:

Pic 7: enter image description here

Now you should be able to right-click on your project and choose “Run As” -> Run on Server and you should see your changes.

Pic 8: enter image description here

If things still didn’t update, go back and look at your Server View and make sure it doesn’t say the restart thing like in Pic 5 above. If it does, please restart your server again like in Pic 6. Then click refresh on the browser.