伙计们,
从 ApplicationContext 加载 spring bean 的推荐做法是什么?我们是否编写 ServletContextListener 以在服务器启动时加载它并在上下文中保存 bean 信息?
或者写一些静态方法来做:
ApplicationContext context = new ClassPathXmlApplicationContext("spring-beans.xml");
并且一直调用这个静态方法?
还是写一个public void方法一直调用?在这种情况下,Spring bean 是否每次都初始化?这看起来容器的工作量太大了。
请建议,谢谢。