0

派生クラスを使用しているときに、ポリシー インジェクションが機能しなくなる状況があります。

関連するクラスは次のようになります (基本的には、インターフェイス、抽象基本クラス、および実装クラス)。

public interface IRepository<T>
{
    void Create(T iItem);
}

public abstract class ElmtRepository<T> : IRepository<T>
{
    protected List<T> Items { get; set; }

    public ElmtRepository()
    {
        Items = new List<T>();
    }

    public void Create(T iItem)
    {
        Items.Add(iItem);
    }
}

public class AcctPgmRepository : ElmtRepository<AcctPgm>
{
}

構成は次のようになります。

  <container>
    <extension type="Interception"/>
    <register type="IRepository[AcctPgm]" mapTo="AcctPgmRepository">
      <interceptor type="InterfaceInterceptor"/>
      <interceptionBehavior type="PolicyInjectionBehavior"/>
    </register>
    <interception>
      <policy name="policy-create">
        <matchingRule name="create-rule1" type="TypeMatchingRule">
          <constructor>
            <param name="typeName">
              <value value="AcctPgmRepository"/>
            </param>
          </constructor>
        </matchingRule>
        <matchingRule name="create-rule2" type="MemberNameMatchingRule">
          <constructor>
            <param name="namesToMatch">
              <array type="string[]">
                <value value="Create"/>
              </array>
            </param>
          </constructor>
        </matchingRule>
        <callHandler name="create-handler1" type="AcctPgmAuthorizationHandler">
          <lifetime type="singleton"/>
          <constructor>
            <param name="allowedRoles">
              <array type="string[]">
                <value value="GroupController"/>
              </array>
            </param>
          </constructor>
        </callHandler>
      </policy>
    </interception>
  </container>

ElmtRepository 基本クラスを削除すると、期待どおりに動作します。基本クラスでは、インジェクションは発生しません。エラーメッセージはありませんが、ポリシーもありません。これは、派生クラスに Create() メソッドを実装した場合でも発生します。

この種のクラス階層を Unity ポリシー インジェクションで機能させる方法はありますか?

ありがとう、ジム

4

1 に答える 1

2

この種のクラス継承Unityは通常、問題なく実行されます。ただし、ジェネリックスの構成は、エラーメッセージが不十分なため、際限のない頭痛の種です。それがあなたの本当の問題だと思います。ただし、エラーメッセージ(またはAcctPgmクラス、またはAcctPgmAuthorizationHandler)を投稿しなかったため、確信が持てません。

含まれているタイプをに変更し、intこのバージョンのコードを機能させました。

using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.Practices.Unity.InterceptionExtension;
using Microsoft.Practices.Unity;
using Microsoft.Practices.Unity.Configuration;

namespace UnityTest
{
    public interface IRepository<T>
    {
        void Create(T iItem);
    }

    public abstract class ElmtRepository<T> : IRepository<T>
    {
        protected List<T> Items { get; set; }

        public ElmtRepository()
        {
            Items = new List<T>();
        }

        public void Create(T iItem)
        {
            System.Diagnostics.Debug.WriteLine("Creating...");
            Items.Add(iItem);
        }
    }

    public class AcctPgmRepository : ElmtRepository<int> { }

    public class LogHandler : ICallHandler
    {
        public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
        {
            System.Diagnostics.Debug.WriteLine("Begin");
            IMethodReturn result = getNext().Invoke(input, getNext);
            System.Diagnostics.Debug.WriteLine("End");
            return result;
        }
        public int Order { get; set; }
    }

    [TestClass]
    public class InheritenceGenericsTests
    {
        [TestMethod]
        public void CreateTest()
        {
            IUnityContainer container = new UnityContainer().LoadConfiguration("Inheritence");
            IRepository<int> r2 = container.Resolve<IRepository<int>>();
            Assert.IsNotNull(r2);
            r2.Create(2);
        }
    }
}

設定あり:

<alias alias="IRepository" type="UnityTest.IRepository`1, UnityTest"/>
<alias alias="IRepositoryClosed" type="UnityTest.IRepository`1[System.Int32], UnityTest"/>
<alias alias="AcctPgmRepository" type="UnityTest.AcctPgmRepository, UnityTest"/>

<container name="Inheritence">
  <extension type="Interception"/>
  <!-- register either type="IRepositoryClosed" or type="IRepository" -->
  <register type="IRepositoryClosed" mapTo="AcctPgmRepository">
    <interceptor type="InterfaceInterceptor"/>
    <policyInjection/>
  </register>
  <interception>
    <policy name="policy-create">
      <matchingRule name="create-rule2" type="MemberNameMatchingRule">
        <constructor>
          <param name="namesToMatch">
            <array type="string[]">
              <value value="Create"/>
            </array>
          </param>
        </constructor>
      </matchingRule>
      <callHandler name="create-handler1" type="UnityTest.LogHandler, UnityTest"></callHandler>
    </policy>
  </interception>
</container>

出力を提供します:

Begin
Creating...
End
于 2011-09-19T18:13:23.113 に答える