我正在尝试配置日志记录,以便将日志文件放入服务器的日志目录中,而不使用硬编码目录。显然,这就是Weblogic中的火箭科学,因为$ {weblogic.Name}没有插入:
<weblogic-web-app>
<logging>
<log-filename>servers/${weblogic.Name}/logs/ohcomeon.log</log-filename>
<logging-enabled>true</logging-enabled>
<rotation-type>byTIme</rotation-type>
<file-count>30</file-count>
<file-time-span>24</file-time-span>
</logging>
</weblogic-web-app>
有办法吗?