17 Aralık 2021 Cuma

Jakarta EE @EJB Anotasyonu

Giriş
Şu satırı dahil ederiz
import javax.ejb.EJB;
Açıklaması şöyle
If none of the other mechanisms are used, then the javadoc says the @EJB will target an EJB in the same application that implements the target type if there is only one.
beanName Alanı
Açıklaması şöyle
The beanName can be used to specify the target EJB if the EJB is located in the same application as your component
lookup Alanı
Açıklaması şöyle
In EJB 3.1, the lookup is a portable way to specify a JNDI string of the target.
mappedName Alanı - Kullanmayın
Açıklaması şöyle
The mappedName is a non-portable, vendor-specific string (even though it's part of the standard!) that somehow identifies the target.
name Alanı
Açıklama yaz


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