BeanFactory已被废弃----读取Spring配置文件类 博客分类: Spring SpringBeanFactoryApplicationContextapplicationContext.xml
程序员文章站
2024-02-06 11:48:16
...
读取Spring配置文件applicationContext.xml,从而获得相应的Bean,BeanFactory类已被最新的Spring废弃掉,所以不能使用下面代码:
BeanFactory ctx = new XmlBeanFactory(new ClassPathResource("applicationContext.xml"));
我们要使用
ApplicationContext类来读取配置文件并读取相应的Bean,代码如下:
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService = (UserService) ctx.getBean("userService"); userService.save();