You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when generating Links with WebMvcLinkBuilder containing OffsetDateTime the date does not get transformed correctly resulting in a malfunctioning link.
Example:
Passing an OffsetDateTime like 2020-01-01T14:00:00.000+01:00 results in:
https://myurl.com/service?date=2020-01-01T14:00:00.000+01:00
where the "+" before the offset gets interpreted by the browser as a space " " instead of: https://myurl.com/service?date=2020-01-01T14:00:00.000%2b01:00.
Setup:
Links are generated with spring-boot-starter-hateoas in version 2.4.3 without custom config.
Example: