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
spring-boot-starter-webflux does not include an EL implementation. This means that EL-based interpolation for validation messages does not work. For example, with an annotation like this:
@Size(min = 2, max = 14, message = "The item '${validatedValue}' must have {min} to {max} characters")
private String item;
The resulting message will look like this:
The item '${validatedValue}' must have 2 to 14 characters
Adding an EL implementation to the classpath changes the message to this:
The item 'a' must be between 2 and 14 characters long