从 Jetty 服务器动态添加和删除上下文处理程序

发布于 2024-12-27 10:26:35 字数 42 浏览 3 评论 0原文

有没有办法从 Jetty 应用程序服务器动态添加或删除上下文处理程序?

Is there any way to dynamically add or remove context handlers from Jetty Application Server ?

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

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

发布评论

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

评论(2

世界等同你 2025-01-03 10:26:35

部署者机制热部署上下文到码头:
http://wiki.eclipse.org/Jetty/Feature/ContextDeployer

the deployer mechanism hot deploys contexts to jetty:
http://wiki.eclipse.org/Jetty/Feature/ContextDeployer

寻梦旅人 2025-01-03 10:26:35

对于 Jetty 9/10/11:

作为 Jetty 9(嵌入)的补充:在运行时添加处理程序


    public void run() throws Exception {

        ...

        System.out.println("Press enter to remove context handler for /hello2");
        System.in.read();

        // important! stop context explicitly.
        contextHandler2.stop();
        // remove handler
        contextHandlerCollection.removeHandler(contextHandler2);

        System.out.println("Press enter to exit.");
        System.in.read();

        server.stop();

        System.out.println("stopped");
   }

For Jetty 9/10/11:

As a supplement to Jetty 9 (embedded): Adding handlers during runtime


    public void run() throws Exception {

        ...

        System.out.println("Press enter to remove context handler for /hello2");
        System.in.read();

        // important! stop context explicitly.
        contextHandler2.stop();
        // remove handler
        contextHandlerCollection.removeHandler(contextHandler2);

        System.out.println("Press enter to exit.");
        System.in.read();

        server.stop();

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