11 Nisan 2022 Pazartesi

Jakarta EE @Vetoed Anotasyonu - Belirsizlik (Disambiguation) İçindir

Giriş
Açıklaması şöyle.  @Alternative ile karşılaştırılabilir
The simplest way to eliminate ambiguity among injectable beans is to apply the @Vetoed annotation to the beans that shall not be considered for injection
Örnek
Şöyle yaparız
@Vetoed
class Dog implements Pet { }

class Cat implements Pet { }

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...