Path Parameter for DateTime in Spring Boot REST2018-08-21 Spring BootのRESTで、 日付をPath Parameterで受け取りたかったんですね。 GetMappingでURLパラメータからValueを取得する~LocalDate編~に書いてある通りですけど、 @DateTimeFormat(pattern="yyyy-MM-dd")なんて使えるんですね。 @GetMapping(value="/element/{since}") public Element getElement(@DateTimeFormat(pattern="yyyyMMdd") @PathVariable LocalDate since) {...