Coldfusion 手动调用 onServerStart

发布于 2024-11-15 09:51:42 字数 56 浏览 0 评论 0 原文

有没有办法快速调用Server.cfc组件中的onServerStart而不需要实际重新启动服务?

Is there a way to quickly call onServerStart in the Server.cfc component without actually restarting the service?

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

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

发布评论

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

评论(1

我们只是彼此的过ke 2024-11-22 09:51:42

您可以通过创建 server.cfc 实例来调用它

objServer = createObject("component", "server");
objServer.onServerStart();

Ray 还就该主题撰写了一篇很棒的博客文章:http://www.coldfusionjedi.com/index.cfm/2011/6/14/Can-you-manually-run-your-ColdFusions-onServerStart-CFC

you can call it by creating an instance of the server.cfc

objServer = createObject("component", "server");
objServer.onServerStart();

Ray has also written a great blog post on the subject: http://www.coldfusionjedi.com/index.cfm/2011/6/14/Can-you-manually-run-your-ColdFusions-onServerStart-CFC

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