Clarifications on Tomcat’s “temp” and “work” directories
work stores compiled JSPs and other assets. => You only need to “clean” the webapp directories under it on the rare occasions when an update to a WebApp is not picked up. temp is used to store files created using the Java File API for creating temporary files. => You can “clean” it every time … Read more