我有 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 时它应该能够获取数据库值?