我是spring的学习者,已经使用spring IOC容器构建了我的测试项目,并在我的项目根路径中配置了beans.xml并加载到我的应用程序中并从中获取bean。
项目根目录下的spring.xml
BeanFactory bean = new XmlBeanFactory(new FileSystemResource("spring.xml"));
源文件中的 spring.xml
BeanFactory bean = new XmlBeanFactory(new FileSystemResource("src/spring.xml"));
这是加载 beans.xml 文件的另一个代码
ApplicationContext context = new GenericXmlApplicationContext("beans.xml");
我的问题是,在实际项目中创建 xml 文件名和文件位置是否有任何标准或约定。因为在一些阅读文章中,我还发现大型项目可能有多个 xml 文件,如 service.xml 和 dao.xml .