A converter takes precedence over built-in conversion of the same type
All 3 scenarios hold
Day words are the dates this converter knows; anything else it hands to the built-in LocalDate conversion, so ISO text still works.
expected outcome
broken scenario
| Scenario | Input value | Parameter type? | Converted date as text? | Date day of week? |
|---|---|---|---|---|
| Day word | yesterday | java.time.LocalDate | 2025-06-06 | FRIDAY |
| Another day word | tomorrow | java.time.LocalDate | 2025-06-08 | SUNDAY |
| Unknown to it | 2024-02-29 | java.time.LocalDate | 2024-02-29 | THURSDAY |