使用Castle Windsor时如何导入资源

时间:2010-04-15 13:09:44

标签: c# xml spring-mvc castle-windsor spring.net

我想将我的组件放在一个单独的xml文件中进行生产,开发等等。这可以通过Castle Windsor完成吗?

使用spring.net时,我可以使用

<springDestinations>
      <objects xmlns="http://www.springframework.net">
        <import resource="file://~/Config/blablabla.xml"/>
      </objects>
    </springDestinations>

使用Castle Windsor,我有以下组件

<components>
  <component id="Retriever" service="Model.Services.Remote.IRetriever, Model" type="Model.Services.Remote.Retriever, Model">
    <parameters>
      <resourceUrl>http://localhost:8888/Service.svc/</resourceUrl>          
    </parameters>
  </component>
</components>

谢谢: - )

1 个答案:

答案 0 :(得分:2)

是的,您可以在XML配置中使用<include> elementsconditional registration