Conditional Validator

An extension package for Bean Validation 2.0 that adds conditional validations

Лицензия

Лицензия

Группа

Группа

com.github.microtweak
Идентификатор

Идентификатор

conditional-validator
Последняя версия

Последняя версия

0.0.2
Дата

Дата

Тип

Тип

pom
Описание

Описание

Conditional Validator
An extension package for Bean Validation 2.0 that adds conditional validations
Ссылка на сайт

Ссылка на сайт

https://github.com/microtweak/conditional-validator
Система контроля версий

Система контроля версий

https://github.com/microtweak/conditional-validator

Скачать conditional-validator

Имя Файла Размер
conditional-validator-0.0.2.pom 7 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/ -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator</artifactId>
    <version>0.0.2</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/
implementation 'com.github.microtweak:conditional-validator:0.0.2'
// https://jarcasting.com/artifacts/com.github.microtweak/conditional-validator/
implementation ("com.github.microtweak:conditional-validator:0.0.2")
'com.github.microtweak:conditional-validator:pom:0.0.2'
<dependency org="com.github.microtweak" name="conditional-validator" rev="0.0.2">
  <artifact name="conditional-validator" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.microtweak', module='conditional-validator', version='0.0.2')
)
libraryDependencies += "com.github.microtweak" % "conditional-validator" % "0.0.2"
[com.github.microtweak/conditional-validator "0.0.2"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • validator-core
  • validator-hv
  • validator-bval

Conditional Validator

Problem

The constraints of the Bean Validation cannot be turned on/off programmatically or according to any condition of the model object.

The @GroupSequenceProvider annotation from Hibernate Validator (RI) allows you to emulate this feature, however, it is a bit boring and tiring implement a class for each validated model object.

Solution

An extension for Bean Validation 2.0 containing analogous annotations for each constraint. For example, if you want to apply @NotNull conditionally use @NotNullWhen(expression = "")

Currently, the constraint expression is provided by Commons Jexl. All provided expression must return a Boolean (true/false).

Whenever the expression returns true, Conditional Validator delegates to the provider (Hibernate Validator or Apache BVal) the corresponding validation. For example, when the @NotNulWhen expression is true, ConditionalValidator tells the provider to validate as @NotNull.

Usage

  1. Add dependency to pom.xml
<!-- If you use Hibernate Validator (RI) -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator-hv</artifactId>
    <version>${conditional-validator.version}</version>
</dependency>

<!-- If you use Apache BVal -->
<dependency>
    <groupId>com.github.microtweak</groupId>
    <artifactId>conditional-validator-bval</artifactId>
    <version>${conditional-validator.version}</version>
</dependency>
  1. Add annotations Conditional Validator
@ConditionalValidate // Enable conditional validation on this class
public class User {

    private boolean notifyByEmail;

    @EmailWhen(expression = "notifyByEmail") // Add the conditional constraint and set the expression
    private String email;
    
    // Getters and Setters
}
com.github.microtweak

Microtweak

Small libraries for micro tweaking (or small features) in frameworks you already know

Версии библиотеки

Версия
0.0.2
0.0.1