首页 > 代码库 > Java在项目启动时访问数据库,在ServletContextListener解决对象无法注入问题

Java在项目启动时访问数据库,在ServletContextListener解决对象无法注入问题

1、通用方法:

// 数据库日志操作对象
private LogInfoServiceIFC logInfoServiceProxy;

@Override
public void contextInitialized(ServletContextEvent event) {

  WebApplicationContext context = WebApplicationContextUtils
  .getRequiredWebApplicationContext(event.getServletContext());
  logInfoServiceProxy = (LogInfoServiceIFC) context.getBean("logInfoService");

}

 

2、SpringMVC项目可直接在类中加入下面这句话:

SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);

 

被坑了好几次

 

Java在项目启动时访问数据库,在ServletContextListener解决对象无法注入问题