Spring引入多个XML配置文件

在开发JavaWeb项目时,当在项目中使用Spring框架,同时拥有多个Spring配置文件时,如下图:

Spring引入多个XML配置文件_第1张图片

那么在web.xml配置文件中该如何引入多个Spring配置文件来初始化Spring容器,下面介绍三种方法:

方式一:在web.xml中通过 标签引入中使用/*符号。



    contextConfigLocation
    classpath:spring/*.xml



    org.springframework.web.context.ContextLoaderListener

方式二:在web.xml中通过 标签引入中使用逗号分隔。



    contextConfigLocation
    
        classpath:spring/applicationContext.xml,
        classpath:spring/spring-dao.xml,
        classpath:spring/spring-mvc.xml,
        classpath:spring/spring-service.xml
    



    org.springframework.web.context.ContextLoaderListener

方式三:在Spring的applicationContext.xml中通过 标签引入其他的xml配置文件。




 

你可能感兴趣的:(Spring,我の原创)