我正在使用Apache CXF编写基于代理的Rest客户端,我想传递一些查询参数,而不必在代理接口中的“搜索”方法中传递它们。我尝试使用@DefaultValue,但是你还是要定义一个方法参数,我必须在任何地方传递相同的精确值。有没有办法告诉CXF一直传递一个具有相同值的查询参数?这样我就可以从代理方法中删除一些不必要的参数。
@GET
@Path("/{version}/{accountId}/search")
@Produces(MediaType.APPLICATION_JSON)
public String search(@PathParam("version") String version,
@PathParam("accountId") String accountId,
@DefaultValue("")@QueryParam("q") String queryString,
@DefaultValue("")@QueryParam("category") String category,
@DefaultValue("1")@QueryParam("page") int page,
@DefaultValue("50")@QueryParam("limit") int limit,
@DefaultValue("all")@QueryParam("response_detail") String responseDetail);
答案 0 :(得分:1)
为什么不尝试不同的方法。创建一个对象SearchParameters
,它只是一个简单的pojo:
public class SearchParameters {
private String version;
private String accountId;
// Other fields
public static SearchParameters(HttpServletRequest request) {
// Here you use the getParameterMap of the `request` object to get
// the query parameters. Look here: http://stackoverflow.com/questions/6847192/httpservletrequest-get-query-string-parameters-no-form-data
// Everything that was not passed in the parameters
// just init with default value as you wish.
}
// Getters and setters here
}
现在将search
定义更改为如下所示:
@GET
@Path("/{version}/{accountId}/search")
@Produces(MediaType.APPLICATION_JSON)
public String search(@PathParam("version") String version,
@PathParam("accountId") String accountId,
@Context HttpServletRequest request);
在search
实现中,只需使用SearchParameters
从request
调用静态构建器,就可以了。