5

我有 log4j DailyRollingFileAppender 类,其中 setFile() 方法我需要检查数据库值以决定使用哪个文件进行日志记录。

DailyRollingFileAppender class 

public void setFileName()
{
    isLoginEnabled = authenticationManager.checkLoginLogging();
}

这里'authenticationManager'是用于使用spring依赖注入功能进行数据库调用的类的对象。

spring-beans.xml
<bean id="dailyRollingFileAppender" class="com.common.util.DailyRollingFileAppender">
 <property name="authenticationManager">
     <ref bean="authenticationManager"/>
 </property>
</bean>

<bean id="authenticationManager" class="com.security.impl.AuthenticationManagerImpl">
    <property name="userService">
        <ref bean="userService"/>
</property>
</bean>

现在,当我启动我的应用程序时,log4j 首先被启动,并且由于 spring-beans 尚未被调用,它在方法 setFileName() 中抛出 NullPointerException。那么有没有办法可以调用'authenticationManager.checkLoginLogging();' 来自 DailyFileAppender 类,以便在加载 log4j 时它应该能够获取数据库值?

4

1 回答 1

12

晚了几年,但我希望这对某人有所帮助。

我追求类似的功能——我有一个自定义附加程序,我想使用一个自动装配的 bean 来使用我们构建的服务执行一些日志记录。通过使附加程序实现 ApplicationContextAware 接口,并使我通常自动装配的字段为静态,我能够将弹簧控制的 bean 注入到 log4j 已实例化的附加程序的实例中。

@Component
public class SslErrorSecurityAppender extends AppenderSkeleton implements ApplicationContextAware {

    private static SecurityLogger securityLogger;

    @Override
    protected void append(LoggingEvent event) {
        securityLogger.log(new SslExceptionSecurityEvent(SecurityEventType.AUTHENTICATION_FAILED, event.getThrowableInformation().getThrowable(), "Unexpected SSL error"));
    }

    @Override
    public boolean requiresLayout() {
        return false;
    }

    @Override
    public synchronized void close() {
        this.closed = true;
    }


    @Override
    public void setApplicationContext(ApplicationContext applicationContext) {
        if (applicationContext.getAutowireCapableBeanFactory().getBean("securityLogger") != null) {
            securityLogger = (SecurityLogger) applicationContext.getAutowireCapableBeanFactory().getBean("securityLogger");
        }
    }
}
于 2015-06-01T23:58:29.490 回答