0

SpringをサポートするMVC4アプリケーションを構築しています。

私のWeb.configは次のようになります

<configSections>
    <sectionGroup name="spring">
      <section name="context" type="Spring.Context.Support.WebContextHandler, Spring.Web"/>
      <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />
    </sectionGroup>
</configSections>

..。

<spring>
    <context type="Spring.Context.Support.MvcApplicationContext, Spring.Web.Mvc3, Version=1.3.2.40943, Culture=neutral, PublicKeyToken=65e474d141e25e07">
      <!--<resource uri="config://spring/objects"/>-->
    </context>

    <objects xmlns="http://www.springframework.net" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://www.springframework.net http://www.springframework.net/xsd/spring-objects.xsd">
      <object type="Org.Zighinetto.MyNS.RepositoryHelper" singleton="true" id="Org.Zighinetto.RepositoryHelper">
        <property name="SessionFactory" ref="Org.Zighinetto.SessionFactory"/>
      </object>

      <object id="Org.Zighinetto.Ecommerce.NHibernateHelper" type="MvcTest.Utils.NHibernateHelper" singleton="true"/>
      <object id="Org.Zighinetto.Ecommerce.SessionFactory" type="NHibernate.ISessionFactory" factory-object="Org.Zighinetto.Ecommerce.NHibernateHelper" factory-method="CreateSessionFactory" />
    </objects>
</spring>

私のコントローラーでは、基本的にすべてのFNH DAOをラップするオブジェクトへの参照を取得したいと思います(私はそれらをリポジトリと呼びました...)

public CustomerController()
        {
            IApplicationContext ctx = new MvcApplicationContext();


            RepositoryHelper repoHelper = (RepositoryHelper)ctx.GetObject("Org.Zighinetto.RepositoryHelper");
            _customerRepository = repoHelper.CustomerRepository;
        }

GetObject次の例外で呼び出しがクラッシュする

No object named 'Org.Zighinetto.RepositoryHelper' is defined : Cannot find definition for object [Org.Zighinetto.RepositoryHelper]

[NoSuchObjectDefinitionException: No object named 'Org.Zighinetto.RepositoryHelper' is defined : Cannot find definition for object [Org.Zighinetto.RepositoryHelper]]
   Spring.Objects.Factory.Support.AbstractObjectFactory.GetObjectInternal(String name, Type requiredType, Object[] arguments, Boolean suppressConfigure) in c:\_prj\spring-net\trunk\src\Spring\Spring.Core\Objects\Factory\Support\AbstractObjectFactory.cs:2065
   Spring.Objects.Factory.Support.AbstractObjectFactory.GetObject(String name) in c:\_prj\spring-net\trunk\src\Spring\Spring.Core\Objects\Factory\Support\AbstractObjectFactory.cs:1826
   Spring.Context.Support.AbstractApplicationContext.GetObject(String name) in c:\_prj\spring-net\trunk\src\Spring\Spring.Core\Context\Support\AbstractApplicationContext.cs:1538

Spring.netコンテキストを初期化するのは悪いですか?そのオブジェクト参照を取得するにはどうすればよいですか?

[追加]

ctx.GetObjectDefinitionNames()空の文字列を返します。したがって、オブジェクトは定義されていません。AppContextの初期化new MvcApplicationContext("~/Web.Config")は変更されません

4

1 に答える 1

0

を使用して修正しましたIApplicationContext ctx = WebApplicationContext.GetRootContext()

于 2012-11-09T13:14:57.437 に答える