我正在尝试转换部分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>
显然,我错过了一些东西,因为它不起作用。
答案 0 :(得分:0)
我自己发现了错误:
在我的webconfig中,我有:
<objects xmlns="http://www.springframework.net">
但在我的改造中,我有:
<objects>
没有xmlns