Optional.empty with @NotBlank on the type field fails validation

Description

Supposing a type with the following definition:

I would expect Optional.empty() to generate no validation errors, because the value is not present. Certainly that's the way other constraints work. Unfortunately, what I get instead is:

'must not be blank'

It's pretty clear why this is happening:

OptionalValueExtractor.java

...and since null isn't a valid value, it of course fails the validation. Any null-failing validator would complain at that point.

A more idiomatic way to deal with optionals would be something like:

OptionalValueExtractor.java

...which would only call the receiver if it was present. However, that's only if the value was present, which is a behavior change, so I'm unsure of all the ramifications of that.

Environment

mvn -v: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T00:58:13-07:00) Maven home: C:\tools\apache-maven\bin\.. Java version: 9.0.4, vendor: Oracle Corporation Java home: C:\Program Files\Java\jdk-9.0.4 Default locale: en_US, platform encoding: Cp1252 OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

Attachments

1

Activity

Show:

Guillaume SmetApril 26, 2018 at 8:46 AM

This is not a bug but something related to a design choice we made in the spec. Both point of views are valid and there is an easy workaround so let's close this one.

We can continue the discussion in the comments though.

Guillaume SmetApril 26, 2018 at 8:44 AM

Additional info: if you want to override this behavior, you can do it by registering your very own value extractor:

Guillaume SmetApril 26, 2018 at 8:15 AM

Hi,

This is a choice we made when writing the Bean Validation 2.0 specification. We consider the value of an empty Optional as null.

Most of the constraints are not concerned as they don't fail for null but indeed for @NotBlank, we consider null as an invalid value.

Can't really say more, both positions are defensible IMHO but we had to make a choice.

Won't Fix

Details

Assignee

Reporter

Labels

Bug Testcase Reminder (view)

Bug reports should generally be accompanied by a test case!

Bug Testcase Reminder (edit)

Bug reports should generally be accompanied by a test case!

Participants

Guillaume Smet
StephenI

Components

Affects versions

Priority

Created April 25, 2018 at 5:15 PM
Updated April 26, 2018 at 8:46 AM
Resolved April 26, 2018 at 8:46 AM