在weblogic.xml中引用环境变量

时间:2016-02-11 15:20:28

标签: java logging weblogic

我正在尝试配置日志记录,以便将日志文件放入服务器的日志目录中,而不使用硬编码目录。显然,这就是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>

有办法吗?

0 个答案:

没有答案