Resource resource = new ClassPathResource("/bean.xml"); resource = new FileSystemResource("d:/tzspring02/src/bean.xml"); XmlBeanFactory xmlBeanFactory = new XmlBeanFactory(resource); /*spring容器加载资源文件的核心类…
一.背景知识及需求 在做WEB项目时,经常在项目第一次启动时利用WEB容器的监听.Servlet加载初始化等切入点为数据库准备数据,这些初始化数据是系统开始运行前必须的数据,例如权限组.系统选项.默认管理员等等.而项目采用了Spring依赖注入来管理对象,而servlet并不受Spring的管理.若此时在servlet中注入Spring管理的对象,则无法使用,如下: public class InitServlet extends HttpServlet { @Autowired private…
一.如果我们希望在Spring容器将所有的Bean都初始化完成之后,做一些操作,那么就可以使用ApplicationListener接口,实现ApplicationListener接口中的onApplicationEvent方法,此方法会在容器中所有bean初始化完成后执行. @Component public class MyApplicationListener implements ApplicationListener<ContextRefreshedEvent> { @Autowir…