log4j 重写JDBCAppender时使用spring管理的bean

   在使用log4j网数据库里写日志时。考虑到可能数据量会很大,所以尝试使用数据库连接池,由于项目本身使用了spring,所以尝试直接使用spring管理的datasource,初次使用时,一直无法成功注入,(可能是log4j优先于spring启动的原因),

            后经多方学习求证,总结以下两种方式可以实现目的:

                   1. 在自己重写的MyJDBCAppender中 手动调用applicationContext.xml时 在手动获取datasource  (bean)

                  

ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");        
	 dataSource = (DataSource) context.getBean("dataSource");

                 

          此种方式鄙人由于在applicationContext.xml中配置jdbc.propertties 路劲问题,一直报找不到文件。后来改放根目录虽然解决,终觉不太舒服。因此尝试寻找在不改其它配置文件路径的情况下 解决上述问题,下面这种方式也就应运而生了。

            2. 在自己重写的MyJDBCAppender中通过以下方式调用bean

         ServletContext  sc=(ServletContext)MyServletContextListener.local.get();
          ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(sc);
	     dataSource = (DataSource) context.getBean("dataSource");

     以上方式需要获取到servletContext,由于这只是一个普通java类。要尝试获取servletContext 必须需要应用服务器支持。还是经过 多方求证学习,得以解决。以下是在普通类中获取servletContext方式。通过在web.xml添加一个监听器,在监听器中获取servletContext并存至本地:

public class MyServletContextListener implements ServletContextListener{
	
	public static ThreadLocal local=new ThreadLocal();

	private ServletContext context=null;


	public void contextDestroyed(ServletContextEvent event) {

		this.context=null;

	}

	//初始化

	public void contextInitialized(ServletContextEvent event) {

		this.context=event.getServletContext();
		local.set(context);//放到线程池

	}

}

 web.xml中配置

<listener>
 	<listener-class>com.xxxx.www.util.MyServletContextListener</listener-class>
 </listener>

 

在MyJDBCAppender 中调用

    ServletContext  sc=(ServletContext)MyServletContextListener.local.get();

 

ok,第二种方式顺利拿到spring中的各种bean.

你可能感兴趣的:(数据库连接池,lo4j日志写数据库,lo4j写日志,log4j整合spring)