12 Şubat 2023 Pazar

Lombok @Log Anotasyonu - JUL Logging İçindir

Giriş
Açıklaması şöyle
This annotation is used for applications relying on the java.util.logging framework. Similar to @Slf4j, it provides a static logger instance named log.
Örnek
Şöyle yaparız
@Log
public class LegacyService {
  public void legacyMethod() {
    log.info("Legacy method logged with @Log");
  }
}

Hiç yorum yok:

Yorum Gönder