欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring 再学习 1

程序员文章站 2022-07-12 09:15:00
...

spring 上下文加载的方式

百度查找

xml文件

ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring/app-context.xml");
String[] configs = {"spring/app-context.xml","xxx"};
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(configs);

class文件

ApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);