我的 ControllerActionInvoker 可以是单例吗?

发布于 2024-10-23 13:54:54 字数 216 浏览 4 评论 0原文

ControllerActionInvoker 似乎没有任何需要为每个控制器创建新实例的实现细节。它似乎有两个属性,其中的 setter 从未使用过,而 getter 基本上是对静态成员的惰性引用。

我正在考虑更改 ASP.NET MVC 应用程序中自定义 ControllerActionInvoker 生命周期的范围。我有充分的理由不应该这样做吗?这门课我有什么遗漏的吗?

It doesn't seem like ControllerActionInvoker has any implementation details that require a new instance to be created for each Controller. It seems to have two properties with setters that are never used, and getters that are basically lazy references to static members.

I am considering changing the scope of my custom ControllerActionInvoker's life cycle in my ASP.NET MVC application. Is there a good reason I shouldn't do this? Is there something I'm missing about this class?

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

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

发布评论

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

评论(1

空宴 2024-10-30 13:54:54

以这种方式实现 IActionInvoker 并没有任何隐含的错误。

然而,也没有隐性的好处。这取决于您希望如何确定 MVC 生命周期特定组件的范围。

There isn't anything implicitly wrong with implementing the IActionInvoker this way.

However, there is also no implicit benefit. It depends on how you want to scope that particular component of the MVC lifecycle.

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