如何限制 Java Web 应用程序中的 Web 服务调用

发布于 2024-12-10 22:50:34 字数 170 浏览 0 评论 0原文

我的要求非常简单易懂。

我想从我的 Java Web 应用程序调用 Web 服务,并限制每分钟最多 10 次 Web 服务调用。 1 分钟后,我可以建立另外 10 个连接,无论之前 10 个 Web 服务调用的状态(已完成或未完成)。

有人可以指导我实现这个的方法吗?有任何教程或有用的链接吗?

My requirement is very simple to understand.

I want to call a web service from my Java web application with restriction of maximum 10 webservice calls per minute. Just after 1 minute, I can establish another 10 connection, regardless the state of previous 10 webservice calls (finished or unfinished).

Can somebody guide me the approach to implement this? Any tutorial or helpful links ?

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

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

发布评论

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

评论(3

得不到的就毁灭 2024-12-17 22:50:34

我们使用RequestThrottler (gist),即受到这篇博文的启发

用法:

private static final int MAX_CALLS = 10;
private static final int PER_INTERVAL = 60000; // 60s
private static final int MAX_WAIT = 2000; // 2s

private RequestThrottler _throttler = new RequestThrottler(MAX_CALLS, PER_INTERVAL);
private SomeWebService _service = new SomeWebService();

public void callService() {
    throttler.startRequest(MAX_WAIT);
    _service.call();
}

并不是说您可能必须处理可能的拥塞,特别是如果您计划无限期地等待作为 Web 请求的一部分。

We use RequestThrottler (gist) that's inspired by this blog post.

Usage:

private static final int MAX_CALLS = 10;
private static final int PER_INTERVAL = 60000; // 60s
private static final int MAX_WAIT = 2000; // 2s

private RequestThrottler _throttler = new RequestThrottler(MAX_CALLS, PER_INTERVAL);
private SomeWebService _service = new SomeWebService();

public void callService() {
    throttler.startRequest(MAX_WAIT);
    _service.call();
}

Not that you might have to take care of possible congestion, especially if you plan to wait indefinitely as part of web requests.

爱你是孤单的心事 2024-12-17 22:50:34

看看 Apache Camel 及其节流器的实现 http://camel.apache.org/throttler.html

Have a look at Apache Camel and his implementation of throttler http://camel.apache.org/throttler.html.

不念旧人 2024-12-17 22:50:34

可以使用开源项目来实现此目的:http://code.google.com/p/valogato/

An open source project can be used for that: http://code.google.com/p/valogato/

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