理解applicationContext.xml和spring-servlet.xml之间的关系
在Spring框架中,配置文件applicationContext.xml和spring -servlet.xml 在应用程序上下文层次结构中扮演不同的角色。
连接和差异
属性文件访问:
applicationContext.xml 中声明的属性文件可供应用程序中的所有 servlet 访问,包括与 spring-servlet.xml 关联的 DispatcherServlet。
需要 * -servlet.xml
两个需要单独的 *-servlet.xml 文件原因:
用例
applicationContext.xml 上下文主要用于以下情况:
在大多数情况下,如果所有 bean 都限制在单个 servlet 中,则可以省略 applicationContext.xml。
以上是Spring中的`applicationContext.xml`和`spring-servlet.xml`有什么区别?的详细内容。更多信息请关注PHP中文网其他相关文章!