我想将我的组件放在一个单独的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>
谢谢: - )