В настоящее время у меня есть образец конечной точки со следующей логикой:
Код: Выделить всё
@GetMapping("sample")
public void sample(@RequestParam("from") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) Instant startDate,
@RequestParam("to") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) Instant endDate) {
// custom logic ...
}
Например:
Код: Выделить всё
http://localhost:port/sample?from=2019-10-10&to=2019-10-15
Код: Выделить всё
Failed to convert value of type 'java.lang.String' to required type 'java.time.Instant'.
Подробнее здесь: https://stackoverflow.com/questions/585 ... questparam