26 Aralık 2023 Salı

Bean Validation API @Future Anotasyonu

Giriş
Açıklaması şöyle
data-time fields (@Future, @Past, @FutureOrPresent, @PastOrPresent);
strings (@Email, @Pattern, @Size, @NotEmpty);
iterative objects (@Size, @NotBlank)
numeric values (@Digits, @Min and @Max, @Negative, @Positive)
boolean values (@AssertTrue, @AssertFalse)
objects (@Null, @NotNull, @Valid)

Hiç yorum yok:

Yorum Gönder

Bean Validation @GroupSequence Anotasyonu

Örnek Elimizde şöyle bir kod olsun public class SampleRequest {   @NotNull   LocalDate startDate;   @NotNull   LocalDate endDate;   @AssertT...