Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clean Tomcat's working directory with IntelliJ

I'm using IntelliJ 14 for deploying a Spring App to my local Tomcat 8 installation (Windows).

I recently changed the letter casing of some file names and it seems that Tomcat's working directory is not updated correctly (propably the fault of Windows's case-insensitive filesystem).

How do I clean Tomcat 8's working directory with IntelliJ?

like image 931
maja Avatar asked Jun 01 '15 11:06

maja


People also ask

How do I run clean in IntelliJ?

To clean up the local working copy, do one of the following: Select the desired file or directory in the Project tool window and choose Subversion | Cleanup from the context menu of the selection. Open the desired file in the editor and choose VCS | Subversion | Cleanup from the main menu.

Where is IntelliJ cache stored?

By default, IntelliJ IDEA stores user-specific files for each IDE instance (configuration, caches, plugins, logs, and so on) in the user's home directory.


1 Answers

IntelliJ creates the Tomcat cache at C:\Users\<your-username>\.IntelliJIdea<year>.<version>\system\tomcat. You can delete this folder to get the cache clean.

Attention! Be sure to clean the browser cache. If you use Chrome, F12>Application Tab>Clear storage>Click Clear site data

enter image description here Ref:

Directories used by the IDE to store settings, caches, plugins and logs

like image 185
anhquan Avatar answered Sep 18 '22 02:09

anhquan