我的Spring项目中有多个属性文件。 spring上下文加载这些属性并以方便的方式处理属性覆盖。有没有办法获取我的Spring配置XML文件(即${myprop}
)可用的属性,并在我的log4j.xml
文件中以类似的方式使用它们?我知道我可以在启动时使用-Dprop=value
将系统属性传递给log4j,但我更喜欢在项目的属性文件中使用所有配置。这可能吗?
我的应用程序在Tomcat中运行。
答案 0 :(得分:1)
将多个属性文件集成到一个属性后,尝试使用此类。
public class DOMConfiguratorWithProperties extends DOMConfigurator {
private Properties propertiesField = null;
public synchronized Properties getProperties() {
return propertiesField;
}
public synchronized void setProperties(final Properties properties) {
propertiesField = properties;
}
@Override
protected String subst(final String value) {
return super.subst(value, getProperties());
}
public static void configure(final String filename) {
new DOMConfiguratorWithProperties().doConfigure(
filename,
LogManager.getLoggerRepository());
}
public static void configure(
final String filename,
final Properties properties) {
DOMConfiguratorWithProperties configurator = new DOMConfiguratorWithProperties();
configurator.setProperties(properties);
configurator.doConfigure(
filename,
LogManager.getLoggerRepository());
}
}
答案 1 :(得分:0)
我认为您与Log4J进行互动的唯一方法是通过Nested diagnostic context。
因此,如果你非常绝望,你可以编写一个Spring AOP方面来设置Spring Bean日志的诊断上下文(你可以使用那里的属性)。但是,这需要Log可用于Spring Bean,因此您需要向服务接口添加getLog()
方法(如果您使用静态AspectJ编译,这会更容易,并在{{ 3}})。
但是没有使用AOP,我想不出让Spring和Log4J互动的合理方法。