当我使用 mvn tomcat7:run log4j 工作正常但是当我使用 mvn tomcat7:deploy 在本地机器上的 tomcat 上运行时,我得到 log4j.properties 文件的 filenotfoundexception。有什么想法可以解决这个问题吗?
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<!-- --> <version>2.1</version>
<configuration>
<url>http://localhost:8080/manager/text</url>
<server>localhost</server>
</configuration>
</plugin>
</plugins>
更新
在 log4j.properties 中,我使用文件附加程序记录到一个名为“loging.log”的文件。该文件是在 tomcat/bin 目录中创建的,但它是空的。