1 回答
TA贡献1797条经验 获得超4个赞
为了匹配您的描述中的 URL,最好的办法是转义月、日和年等不同的日期部分。然后在方法内部,您可以将它们拼凑起来成为一个 Date 对象。
要将它们全部捕获为一种日期类型,将针对 URL 结构运行,在这种情况下,它无法区分日期中的“斜线”与区分不同 URL 参数的“斜线”之间的区别。如果您不想为日期切换到 ISO-8601 表示形式并且不想将斜杠 %-encode 为 %2F 或使用查询字符串等。
这样的事情应该有效:
@GET
@Path("/dd/{sp}/{rpt}/{ter}/{month}/{day}/{year}/{grant}/{refresh}")
@Produces(MediaType.APPLICATION_JSON)
public List<ReportPeriodBean> getApprovals(@PathParam("sp") String sp,
@PathParam("rpt") String rpt,
@PathParam("ter") String ter,
@PathParam("month") int month,
@PathParam("day") int day,
@PathParam("year") int year,
@PathParam("grant") String grant,
@PathParam("refresh") boolean refresh) {
LocalDate date = LocalDate.of(year, month, day);
// Now use the date however you like
}
这将使您能够将您的 URL 保留在似乎首选的语法中:
rs/Service/Store/Grantor/122/5801/DUE/10/30/2017/grantValue/true?request.preventCache=1562353357306
添加回答
举报