Very easy way to validate simple and complex objects by using a fluent interface.
- No 3rd party dependencies
- Tiny artifact size
- clean and natural api
If you want to validate just a method argument you can do this by using the module easy-validation-args.
validate().that(arg1)
.withMessage(() -> "arg1")
.isNotBlank()
.hasMinLength(30)
.matches(value -> value.contains("whatIsExpected"));
Commonly when you implement a validation the code would look like this:
if (StringUtils.isBlank(arg1)) {
throw new IllegalArgumentException("arg1");
}
if (arg1.length() <= 30) {
throw new IllegalArgumentException("arg1");
}
if (arg1.contains("whatIsExpected") {
throw new IllegalArgumentException("arg1);
}
Just imagine you have 20+ different input values you have to validate. The code is growing very fast, and it will get hard to maintain as it grows.
You also have the possibility to set a seperate message per validation.
validate().that(arg1)
.withMessage(() -> "arg1 mustn't be blank").isNotBlank()
.withMessage(() -> "arg1 must have at leat 30 chars").hasMinLength(30)
.withMessage(() -> "arg1 must contain \"whatIsExpected\"").matches(value -> value.contains("whatIsExpected"));
Expect the case you want to validate the input to be not blank, and it mustn't contain whitespace, but you want to report it with different error messages.
List<String> occuredErrorKeys = new ArrayList<>();
String validatedValue = " ";
Validator.reportTo(occuredErrorKeys::add)
.verify(validatedValue)
.usingKey("notBlank").matches(StringUtils::isNotBlank)
.and().usingKey("whitespaces").matches(StringUtils::doesNotContainWhitespace)
.and().usingKey("minLength").matches(value -> StringUtils.length(value) > 10);
In the list occuredErrorKeys the errors notBlank, whitespaces and minLength will be added. With this information you can report the error however you want.
If you have the need to throw your own exception in case of the first violation, e.g. for throwing an error code, just go ahead like this:
Validator.stopOnFirstError()
.throwing(() -> new MyCheckedExceptionWithErrorCode(999))
.verify(validatedValue)
.matches(StringUtils::isNotBlank)
.and(StringUtils::doesNotContainWhitespace)
First I thought using commons-lang3 is fine. But I realized that commons-lang3 size is about 500 KB. Furthermore: How to avoid dependency clashes?
Therefore, I decided to use my own matchers. Currently in version 2.0.0-RC2 the size is ~ 6 KB. Furthermore the whole validation has no dependency to any 3rd party library. So you can use always as long you use at least java 11.
More Details and Maven Coordinates can be found at the modules:
While developing the first release I followed the main concept of using lambda combined with a fluent interface is from Joel Planes, what can be found here.
But I was getting tired to always invoke the method test and afterward the method throwIfInvalid.
Thanks to Eric Evans' input, I developed it from scratch with the possibility to decide if I want to throw an exception or not easy, without duplicating so much method signatures. I hope you like the result.