FileSystemXmlApplicationContext
时间: 2024-05-18 17:11:18 浏览: 61
18 Spring IoC容器如何读取应用外部的xml,txt,图形或者属性文件?慕课专栏(1)1
FileSystemXmlApplicationContext 是Spring Framework中的一个类,它是用来从文件系统加载XML配置文件并创建应用上下文的。通过创建FileSystemXmlApplicationContext对象,我们可以使用文件系统路径加载配置文件并实例化Spring容器。
与FileSystemXmlApplicationContext相对应的是ClassPathXmlApplicationContext。它与FileSystemXmlApplicationContext的区别在于,ClassPathXmlApplicationContext从类路径加载XML配置文件,并创建应用上下文。这意味着配置文件必须位于类路径下,而不是文件系统中。
因此,如果你的XML配置文件位于文件系统中,你可以使用FileSystemXmlApplicationContext来加载它。如果你的XML配置文件位于类路径中,你可以使用ClassPathXmlApplicationContext来加载它。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [FileSystemXmlApplicationContext…](https://blog.csdn.net/hbs321123/article/details/38824091)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文