RESTEasy QueryParam 的名称任意?

发布于 2024-12-21 17:24:25 字数 285 浏览 2 评论 0原文

有没有办法在不使用 @QueryParam 注释显式声明其名称的情况下获取任何查询参数?

我有一个字符串,其中可能包含诸如 {animal} 之类的标记,然后将其替换为发布的查询参数,例如?animal=fox,但我希望标记的名称也可以配置。理想情况下,我希望能够做这样的事情:

for (QueryParam param : queryParams) {
    text = text.replaceAll("{" + param.key + "}", param.value);
}

Is there a way to get any query parameter without explicitly declaring its name using the @QueryParam annotation?

I have a string which may have tokens like {animal}, which are then replaced by the query parameter posted, e.g. ?animal=fox, but I want the name of the token to be configurable as well. Ideally I would like to be able to do something like this:

for (QueryParam param : queryParams) {
    text = text.replaceAll("{" + param.key + "}", param.value);
}

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

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

发布评论

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

评论(1

风和你 2024-12-28 17:24:25

(我猜您正在谈论编写一个资源来接受查询字符串,正确吗?)

在这种情况下,在您的方法中,您可以使用 @Context 获取 UriInfo 对象,您可以使用它来获取所有查询字符串的 MultivaluedMap参数。

(I'm guessing you are talking about writing a resource to accept a query string correct?)

In which case, in your method, you can use @Context to get a UriInfo object which you an use to obtain a MultivaluedMap of all of your query string parameters.

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