多个spring配置文件依赖注入要怎么写?

2024-12-19 14:11:52
推荐回答(4个)
回答1:

主要有两种方式:

1、在一个配置文件中使用import标签导入其他配置文件,即

applicationContext.xml中部分代码如下:


2、在web.xml中配置Spring配置文件处导入多个配置文件,即可

    a、导入多个配置文件

    

web.xml部分代码如下:

    contextConfigLocation
    
        applicationContext-core.xml,
        applicationContext-dao.xml,
        applicationContext-service.xml,
        applicationContext-action.xml
    

    b、使用*通配符导入多个配置文件

web.xml部分代码如下:

    contextConfigLocation
    
        applicationContext-*.xml
    

回答2:

主要有两种方式:
1、在一个配置文件中使用import标签导入其他配置文件,即
applicationContext.xml中部分代码如下:



2、在web.xml中配置Spring配置文件处导入多个配置文件,即可
a、导入多个配置文件

web.xml部分代码如下:

contextConfigLocation

applicationContext-core.xml,
applicationContext-dao.xml,
applicationContext-service.xml,
applicationContext-action.xml


b、使用*通配符导入多个配置文件
web.xml部分代码如下:

contextConfigLocation

applicationContext-*.xml

回答3:

在2里面加上一句

在定义bean之前导入

回答4:

web.xml中添加


contextConfigLocation
classpath*:**/applicationContext-*.xml


org.springframework.web.context.ContextLoaderListener