将 DAO 和网关放入 Application.cfc 时有任何问题吗?

发布于 2024-12-07 12:27:01 字数 55 浏览 0 评论 0原文

将多次调用但只需要实例化一次的 DAO 和网关放在应用程序范围内是否可以?

谢谢

Is it ok to put DAOs and Gateways that will be called many times but only need to be instantiated once in the Application scope?

Thanks

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

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

发布评论

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

评论(2

泛泛之交 2024-12-14 12:27:01

是的,绝对是。

另一种选择是使用 IOC 框架,例如 ColdSpring 或其他一些 bean 工厂。然后,bean 工厂可以存储在应用程序范围中并实例化 onApplicationStart()(有效地实现相同的目标,但可能具有更多控制)。

Yes, absolutely.

Another option is to use an IOC framework such as ColdSpring or some other bean factory. The bean factory can then be stored in the application scope and instantiated onApplicationStart() (effectively achieving the same thing but possibly with more control).

素衣风尘叹 2024-12-14 12:27:01

这是放置它们的完美位置;-)。

将它们作为 application.myDAO = xxxx & 添加到 onApplicationStart() 中application.myGateway = xxxx 就可以了!

That's the perfect place to put them ;-).

Add them into onApplicationStart() as application.myDAO = xxxx & application.myGateway = xxxx and you're good to go!

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