在Java spring中,可以将配置划分为多个xml文件,然后使用
从另一个文件导入<import resource="importedConfig.xml"/>
如何在SpringPython中做同样的事情?
答案 0 :(得分:0)
虽然似乎没有选择包含其他资源,但您可以使用多个配置文件初始化Spring Python:
configs = [ XMLConfig("config-1.xml"), XMLConfig("config-2.xml") ]
container = ApplicationContext( configs )