u-ryo's blog

various information for coding...

Path Parameter for DateTime in Spring Boot REST

| Comments

Spring BootのRESTで、 日付をPath Parameterで受け取りたかったんですね。 GetMappingでURLパラメータからValueを取得する~LocalDate編~に書いてある通りですけど、 @DateTimeFormat(pattern="yyyy-MM-dd")なんて使えるんですね。

1
2
@GetMapping(value="/element/{since}")
public Element getElement(@DateTimeFormat(pattern="yyyyMMdd") @PathVariable LocalDate since) {...

Comments