我正在尝试将 p6spy (3.xx) 集成到我的项目中,并且在spy.properties
文件中,我想指定
logfile=${user.home}/logs/spy-%d{yyyyMMdd}.log
或者至少
logfile=${user.home}/logs/spy.log
到目前为止,我也无法做到,并且执行失败了FileNotFoundException
java.io.FileNotFoundException: ${user.home}/logs/spy.log (No such file or directory)
Mine 是一个 Spring Boot 项目,合作者运行不同的操作系统。默认情况下,它是spy.log
在项目根目录中创建文件,这不好。
是否可以像在 .properties 文件中那样指定相对路径?如果是,如何?
非常感谢!