路径中的日期会误导请求 URI

我有一个日期格式为“无法加载 rs/Service/Store/Grantor/122/5801/DUE/10/30/2017//true?request.preventCache=1562353357306 状态:404”的 URL,其中 10 /30/2017 是它拥有的 Java 代码中的一个日期


@GET

@Path("/dd/{sp}/{rpt}/{ter}/{date}/{grant}/{refresh}")

@Produces(MediaType.APPLICATION_JSON)


public List<ReportPeriodBean> getApprovals(@PathParam("sp") String sp,

        @PathParam("rpt") String rpt, @PathParam("ter") String ter,

        @PathParam("date") String date,

        @PathParam("grant") String grant, @PathParam("refresh") boolean refresh) throws Exception {

我应该如何让我的 URL 以正确的日期格式出现,并允许控制器处理其余的事情,无论如何在春天?


慕桂英3389331
浏览 56回答 1
1回答

繁星coding

为了匹配您的描述中的 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,&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("rpt") String rpt,&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("ter") String ter,&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("month") int month,&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("day") int day,&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("year") int year,&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("grant") String grant,&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; @PathParam("refresh") boolean refresh) {&nbsp; &nbsp; LocalDate date = LocalDate.of(year, month, day);&nbsp; &nbsp; // Now use the date however you like}这将使您能够将您的 URL 保留在似乎首选的语法中:rs/Service/Store/Grantor/122/5801/DUE/10/30/2017/grantValue/true?request.preventCache=1562353357306
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java