Spring.Netでアプリケーションを作成しました。 『SystemConfiguration_Workspace_NewWorkspaceAction』という名前のオブジェクトが定義されていないスプリングスローエラーオブジェクトの定義が見つかりません
私はSpring.NetのGetObject関数(「...」)を呼び出すしようとすると、私は例外を持っています::オブジェクトの定義を見つけることができない[SystemConfiguration_Workspace_NewWorkspaceAction]
しかし、XMLに 'SystemConfiguration_Workspace_NewWorkspaceAction'という名前のオブジェクトがあります。
<?xml version="1.0" encoding="utf-8" ?>
<spring>
<typeAliases>
<alias name="ContextMenuItemModelAlias" type="ElmoMotionControl.View.Model.ContextMenuItemModel, ElmoMotionControl.View.Model"/>
</typeAliases>
<objects xmlns="http://www.springframework.net" >
<!--<description>An example that demonstrates simple IoC features.</description>-->
<object id="WorkspaceTreeModel" type="ElmoMotionControl.View.Model.ContextMenuModel, ElmoMotionControl.View.Model" >
<property name="ContextMenus" ref="WorkspaceTreeModelDicProp"/>
</object>
<!-- _______________________The dictionary item______________________ -->
<object id ="WorkspaceTreeModelDicProp" type="System.Collections.Generic.Dictionary<string, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<ContextMenuItemModelAlias>>>">
<constructor-arg>
<dictionary key-type="string" value-type="System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<ContextMenuItemModelAlias>>">
<entry key="SystemConfiguration_Workspace" value-ref="SystemConfiguration_Workspace"/>
</dictionary>
</constructor-arg>
</object>
.
.
.
</objects>
</spring>
何が問題になりますか?
私は 'SystemConfiguration_Workspace'と' SystemConfiguration_Workspace_NewWorkspaceAction'オブジェクト定義しか見ません。 – Marijn
申し訳ありませんGetObject( "WorkspaceTreeModel") で試してみましたが、同じエラーが発生しました( "WorkspaceTreeModel")。 –
'SystemConfiguration_Workspace'に' SystemConfiguration_Workspace_NewWorkspaceAction'が設定されているプロパティまたはコンストラクタがありますか? – Marijn