24 Kasım 2022 Perşembe

Jakarta EE Concurrency @Schedule

Örnek
Şöyle yaparız
//Like the EJB Timer annotation but for other components e.g. CDI Beans (non-persistent)
@ApplicationScoped
public class ScheduledBean {

  @Schedule(executor="MyExecutor", minute="*/5")
  public void fiveMinuteRule() {
  }
}


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