?ApplicationContext:接口类型,代表应用上下文,可以通过其实例获得Spring容器中的Bean对象
?
它是从类的根路径下加载配置文件推荐使用这种
ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
它是从磁盘路径上加载配置文件,配置文件可以在磁盘的任意
ApplicationContext app = new ClassPathXmlApplicationContext("C:\\Users\\用户名\\project\\spring-test\\src\\main\\resources\\applicationContext.xml");
当使用注解配置容器对象时,需要使用此类来创建spring容器,它用来读取注解
UserService userService = (UserService) app.getBean("userService"); ? ??
userService.save();
? ? ? ??
UserService userService1 = app.getBean(UserService.class);
userService1.save();
本文是关于spring相关重点API,希望可以帮到初学spring的小伙伴哦!?
?