为了账号安全,请及时绑定邮箱和手机立即绑定

将 2 个控制器方法映射到具有不同查询参数的同一端点

将 2 个控制器方法映射到具有不同查询参数的同一端点

至尊宝的传说 2024-01-17 20:51:50
我想在 Java 中实现一个带有“重载”端点的 REST API,该端点因传递的查询参数而异。我在我的控制器类中尝试过这段代码:@Get("/query")public MyResponse queryByDate(@QueryValue @Valid @Format("yyyy-MM-dd") Date date) {    // Code to generate the response    return retval;}@Get("/query")public MyResponse queryByDateAndValue(@QueryValue @Valid @Format("yyyy-MM-dd") Date date, @QueryValue int value) {    // Code to generate the response    return retval;}这将返回以下错误:More than 1 route matched the incoming request. The following routes matched /calendar/years/query: GET - /calendar/years/query, GET - /calendar/years/queryio.micronaut.web.router.exceptions.DuplicateRouteException: More than 1 route matched the incoming request. The following routes matched /calendar/years/query: GET - /calendar/years/query, GET - /calendar/years/query请注意,如果我删除其中一种方法,其余方法将按预期工作。如何将具有不同查询参数的端点映射到控制器中的 2 个不同方法?这可能吗?
查看完整描述

1 回答

?
倚天杖

TA贡献1828条经验 获得超3个赞

您收到错误是因为两个端点具有相同的路径,并且它会混淆编译器将 API 映射到相应的路径。传递查询参数并不意味着端点具有不同的路径。您可以将这两个端点合二为一:


@Get("/query")

public MyResponse queryByDateAndValue(@QueryValue @Valid @Format("yyyy-MM-dd") Date date,@DefaultValue("1")  @QueryValue int value) {

    // Code to generate the response

    return retval;

}

并设置默认值value。然后您可以相应地分开您的案例。


查看完整回答
反对 回复 2024-01-17
  • 1 回答
  • 0 关注
  • 35 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信