在 spring 对象上转换 web.config



我正在尝试转换我的web.config的一部分:

<spring>
    <objects xmlns="http://www.springframework.net">
        <object name="MyPresenter" type="MyRepositoryStub, MyNameSpace" />
    </objects>
</spring>

我正在尝试像这样转换它:

<spring>
  <objects>
    <object name="MyPresenter"
            type="MyRepository, MyNameSpace"
            xdt:Transform="SetAttributes"
            xdt:Location="Match(name)" />
  </objects>
</spring>

显然我错过了一些东西,因为它不起作用。

我自己发现了错误:

在我的网络配置中,我有:

 <objects xmlns="http://www.springframework.net">

但在我的转变中,我有:

<objects> 

没有 XMLN

最新更新