11 Nisan 2022 Pazartesi

Jakarta EE CDI Sınıfı - Programmatic Injection

Örnek
Şöyle yaparız
// type filter for retrieving a Cat:
Cat cat = CDI.current().select(Cat.class).get();

// type and annotation filter for retrieving a @Feline Pet:
MyInterface myBean = CDI.current()
  .select(
    Pet.class, 
    new AnnotationLiteral<Feline>() {})
  .get();

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