gpt4 book ai didi

java - REST API 的多个参数

转载 作者:行者123 更新时间:2023-12-01 09:38:14 25 4
gpt4 key购买 nike

这是为 REST API 提供多个参数的正确方法吗?

@GET
@Path("/id/{userId,type,date}")
@Nullable
@Produces(MediaType.APPLICATION_JSON)
List<Exercise> findExercises(
@ApiParam( value = "User ID", required=true) @PathParam("userId") Long userId,
@ApiParam( value = "Type") @PathParam("type") String type,
@ApiParam( value = "Date") @PathParam("date") String date);

如果没有,我该如何实现?

最佳答案

我想这是正确的方法:

@GET
@Path("/id/{userId}/{type}/{date}")
@Nullable
@Produces(MediaType.APPLICATION_JSON)
List<Exercise> findExercises(
@PathParam("userId") Long userId,
@PathParam("type") String type,
@PathParam("date") String date);

关于java - REST API 的多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38671169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com