如何在log4j2中获取$ {wlp.server.name}。
我的应用程序将WebSphere Liberty配置文件(WLP)用作服务器,我的应用程序是Springboot应用程序。我有一个Bootstrap文件,如下所示: server_log_filepath =/somepath/$ {wlp.server.name} 现在,假设我的$ {wlp.server.name} application_log_filename = $ {
wlp.server.name}实际值是mywlpserver,所以事物是服务器日志在路径 /somepath /somepath /mywlpserver上正确生成。但是,当我尝试在我的log4j2中fetch application_log_filename时,它不起作用,并且我的应用程序日志以$ {wlp.server.name}。 我在log4j2.22.properties文件中正在尝试读取值,例如
appender.rolling.filename = {application_log_filename}
或
appender.rolling.filename = {enky_log_filename}
都不是从boottrap.properties中选择值文件。
有什么方法可以从中获取值。 Bootstrap属性或server.env文件到我的log4j2文件。
提前致谢
My application is using websphere liberty profile(wlp) as server and my application is springboot application. I have a bootstrap file like below:
Server_log_filepath=/somepath/${wlp.server.name}
application_log_filename=${wlp.server.name}
Now suppose my ${wlp.server.name} actual value is MYWLPSERVER, So the thing is server logs are getting generated at the path /somepath/MYWLPSERVER correctly. But when i am trying to fetch application_log_filename in my log4j2.properties it's not working and my application logs are getting generated with name as ${wlp.server.name}.log instead of MYWLPSERVER.log
What I am doing in my log4j2.properties file is trying to read the value like below
appender.rolling.fileName={application_log_filename}
or
appender.rolling.fileName={env:application_log_filename}
Neither way it is picking the value from bootstrap.properties file.
Is there any way to fetch the value from. Bootstrap properties or server.env file to my log4j2 file.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论