我想删除Tomcat 8+版本临时文件夹下的所有文件和子目录。
在我的应用程序中,ActiveMQ是集成的,它将在服务器启动时在Tomcat的临时文件夹内创建一个文件夹。所以我想在服务器启动时通过ActiveMQ创建另一个文件夹之前清除我的临时文件夹。
是否有任何方法来定义任何maven插件来实现这一点,或者有任何其他方法来完成这项工作?
据我所知,您需要清理未暴露给maven的目录。
所以检查这个clean plugin for maven
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<filesets>
<fileset>
<directory>some/relative/path</directory>
<includes>
<include>**/*.tmp</include>
<include>**/*.log</include>
</includes>
<excludes>
<exclude>**/important.log</exclude>
<exclude>**/another-important.log</exclude>
</excludes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>