春季版:2.0.0.40000 运行时:.NET 4.5
以此处显示的示例 www.springframework.net/.../objects.html和 API http://springframework.net/docs/1.3..../webframe.html - ContextHandler
我有以下
代码:
<configSections>
<sectionGroup name="spring">
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
<section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />
<sectionGroup name="child">
<section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/>
</sectionGroup>
</sectionGroup>
</configSections>
<spring>
<objects xmlns="http://www.springframework.net">
<import resource="assembly://ProjectDLL/Config/Spring.xml"/>
</objects>
<child>
<objects xmlns="http://www.springframework.net">
<object name="eventLog"
type="System.Diagnostics.EventLog, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<constructor-arg type="string" name="logName" value="v1" />
<constructor-arg type="string" name="machineName" value="." />
<constructor-arg type="string" name="source" value="v1" />
</object>
</objects>
</child>
<context name="Parent">
<resource uri="config://spring/objects"/>
<context name="child">
<resource uri="config://spring/child/objects"/>
</context>
</context>
</spring>
打电话
ContextRegistry.GetContext();
任何上下文名称的结果
消息 --- 创建上下文“ChildContext”时出错:后处理对象工厂时出错。
我尝试了所有各种命名,包括 Child、ChildContext、Children,都导致相同的错误。
在我的示例中,我使用了一个包含我的对象(如果我在同一个 xml 文件中定义孩子,我会得到“创建上下文'父'时出错:有多个根元素”
我知道这很可能是一个配置问题,希望能提供任何帮助。