Spring python:如何从xml配置文件中导入另一个xml资源

时间:2012-06-01 13:04:32

标签: python spring

在Java spring中,可以将配置划分为多个xml文件,然后使用

从另一个文件导入
<import resource="importedConfig.xml"/>

如何在SpringPython中做同样的事情?

1 个答案:

答案 0 :(得分:0)

虽然似乎没有选择包含其他资源,但您可以使用多个配置文件初始化Spring Python:

configs = [ XMLConfig("config-1.xml"), XMLConfig("config-2.xml") ]
container = ApplicationContext( configs )

(见spring-python source