英文:
Configurable fileName in RollingRandomAccessFile log4j2.xml
问题
在Maven War部署中,是否可以将log4j2.xml的文件名配置为可配置的?以下是我的应用程序结构。
(图片已省略)
目前,路径在log4j2.xml文件中是硬编码的。
英文:
In maven war deployment, is it possible to make log4j2.xml fileName as configurable. Following is my application structure.
Currently the paths are hardcoded in the log4j2.xml file.
答案1
得分: 1
可以在文件名中使用Lookups,在处理配置时会对其进行评估。因此,您可以创建一个类似于"${sys:LOG_DIR:-logs}/app.log"的文件名。
英文:
Yes, you can use Lookups in the file name that will be evaluated when the configuration is processed. So you can create a file name like “${sys:LOG_DIR:-logs}/app.log”.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论