19 Nisan 2022 Salı

EJB @MessageDriven Anotasyonu

Örnek
Şöyle yaparız. destination kuyruk ismini belirtir. destinationType Queue veya Topic olduğunu belirtir, maxSession ise kaç tane eş zamanlı mesaj işleneceğini belirtir.
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName="destination", propertyValue="SendingSMSQueue"),
@ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Queue"),
@ActivationConfigProperty(propertyName="maxSession", propertyValue = "1")
})
public class SendgridEmail2SmsMessageListener implements MessageListener {...}


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