log4j 附加程序相对于我的 Maven 项目的路径
我正在尝试定义一个 log4j 附加程序以保存在我当前的 Maven 项目中(仅适用于开发)。我不希望appender最终出现在我部署的web应用程序中,而是出现在我实际的maven项目中,在源代码旁边,无论我的web应用程序部署在哪里(当然是本地)。
我尝试过各种 Maven(和非 Maven)变量,但没有成功。
我是否缺少一个变量来简单地执行此操作? 任何帮助表示赞赏。 谢谢。
I'm trying to define an log4j appender to be saved in my current maven project (for dev only). I do not want the appender to end up in my deployed webapp, but in my actual maven project, next to the sources, regardless of where my webapp is deployed (locally of course).
I have tried various maven (and non-maven) variables with no luck.
Is there a variable I'm missing to do this simply?
Any help is appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过将
${basedir}
或${basedir}/target
作为 log4j.properties 中的日志文件位置?它应该在构建过程中被过滤。Have you tried putting
${basedir}
or${basedir}/target
as the logfile location in log4j.properties? It should get filtered during the build.