我有一个日期格式为“无法加载 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 以正确的日期格式出现,并允许控制器处理其余的事情,无论如何在春天?
繁星coding
相关分类