如何让 CastleWindsor 在调用 Resolve 时创建一个新实例

发布于 2024-11-14 14:36:44 字数 491 浏览 0 评论 0原文

我有以下代码:

public interface IService { }
public class MyService : IService { }

和一个测试方法

[Test]
public void T1()
{
    IWindsorContainer container = new WindsorContainer();

    container.Register(Component.For<IService>()
        .ImplementedBy<MyService>());

    var s1 = container.Resolve<IService>();
    var s2 = container.Resolve<IService>();
    Assert.AreNotSame(s1, s2);
}

我应该更改什么才能通过测试?

I have the following code:

public interface IService { }
public class MyService : IService { }

and a test method

[Test]
public void T1()
{
    IWindsorContainer container = new WindsorContainer();

    container.Register(Component.For<IService>()
        .ImplementedBy<MyService>());

    var s1 = container.Resolve<IService>();
    var s2 = container.Resolve<IService>();
    Assert.AreNotSame(s1, s2);
}

What should I change for the test to pass?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诺曦 2024-11-21 14:36:44

将生活方式设置为“Transient”:

container.Register(
    Component.For<IService>()
             .ImplementedBy<MyService>()
             .LifeStyle.Transient
);

默认生活方式为“Singleton”,这就是您看到相同实例的原因。

Set the lifestyle to Transient:

container.Register(
    Component.For<IService>()
             .ImplementedBy<MyService>()
             .LifeStyle.Transient
);

The default lifestyle is Singleton and that's why you see the same instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文