Apache CXF Jetty 配置 httpj:engine-factory ThrottlingFilter 在高负载时返回 HTTP 503

发布于 2024-12-25 19:53:02 字数 1147 浏览 2 评论 0原文

我在 Apache CXF JAX-RS 的 REST 层中对 Jetty 服务器进行了以下配置:

<httpj:engine-factory bus="cxf">
  <!--
    you just need to specify the TLS Server configuration for the certain port
  -->
  <httpj:engine port="${port}">
    <httpj:tlsServerParameters>
      <sec:keyManagers keyPassword="${keystorePassword}">
        <sec:keyStore type="JKS"
                      password="${keystorePassword}"
                      file="${keystoreFile}"/>
        </sec:keyManagers>
        <sec:trustManagers>
          <sec:keyStore type="JKS"
                        password="${keystorePassword}"
                        file="${bookshelf.portal.http.keystoreFile}"/>
      </sec:trustManagers>
    </httpj:tlsServerParameters>

    <httpj:threadingParameters minThreads="5"
                               maxThreads="15" />

    <httpj:sessionSupport>true</httpj:sessionSupport>
  </httpj:engine>
</httpj:engine-factory>

我想将 Jetty 配置为使用 ThrottlingFilter 在服务器负载较高时抛出 HTTP 503 错误。

我该怎么做?

I have the following configuration of Jetty server inside my REST layer of Apache CXF JAX-RS:

<httpj:engine-factory bus="cxf">
  <!--
    you just need to specify the TLS Server configuration for the certain port
  -->
  <httpj:engine port="${port}">
    <httpj:tlsServerParameters>
      <sec:keyManagers keyPassword="${keystorePassword}">
        <sec:keyStore type="JKS"
                      password="${keystorePassword}"
                      file="${keystoreFile}"/>
        </sec:keyManagers>
        <sec:trustManagers>
          <sec:keyStore type="JKS"
                        password="${keystorePassword}"
                        file="${bookshelf.portal.http.keystoreFile}"/>
      </sec:trustManagers>
    </httpj:tlsServerParameters>

    <httpj:threadingParameters minThreads="5"
                               maxThreads="15" />

    <httpj:sessionSupport>true</httpj:sessionSupport>
  </httpj:engine>
</httpj:engine-factory>

I would like to configure Jetty to use ThrottlingFilter to throw HTTP 503 error upon a high load on server.

How do I do that?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文