0

我正在尝试转换我的 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>

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

4

1 回答 1

0

我自己发现了错误:

在我的 webconfig 中,我有:

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

但在我的变换中,我有:

<objects> 

没有 xmlns

于 2013-10-17T13:35:36.033 回答