RETEasy 支持隧道吗?

发布于 2024-11-28 06:52:46 字数 171 浏览 2 评论 0原文

正如 Restlet 文档中提到的,它具有名为 “隧道”。 RESTEasy 也有这个功能吗?

As mentioned in Restlet docs it has feature called "tunneling". Does this feature exist in RESTEasy too?

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

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

发布评论

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

评论(1

月寒剑心 2024-12-05 06:52:46

下面的 Servlet 通过从请求中委托“方法”参数来支持“隧道”。

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher;


public class TunnelingDispatcher extends HttpServletDispatcher {

@Override
protected void service(HttpServletRequest httpServletRequest,
        HttpServletResponse httpServletResponse) throws ServletException,
        IOException {
    String method = httpServletRequest.getParameter("method");
    if (method == null) {
        method = httpServletRequest.getMethod();
    } else {
        method = method.toUpperCase();
    }
    service(method, httpServletRequest, httpServletResponse);
}

}

Servlet below supports "tunneling" by delegating "method" parameter from request.

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher;


public class TunnelingDispatcher extends HttpServletDispatcher {

@Override
protected void service(HttpServletRequest httpServletRequest,
        HttpServletResponse httpServletResponse) throws ServletException,
        IOException {
    String method = httpServletRequest.getParameter("method");
    if (method == null) {
        method = httpServletRequest.getMethod();
    } else {
        method = method.toUpperCase();
    }
    service(method, httpServletRequest, httpServletResponse);
}

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