RESTEasy QueryParam 的名称任意?
有没有办法在不使用 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(我猜您正在谈论编写一个资源来接受查询字符串,正确吗?)
在这种情况下,在您的方法中,您可以使用 @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.