4 Ocak 2023 Çarşamba

SpringBoot Actuator Custom Endpoint @DeleteOperation Anotasyonu

Giriş
DELETE isteği ile kullanılır

Örnek
Şöyle yaparız
@DeleteOperation
public String goodbyeNameParam(String name) {
  return "Goodbye " + name;
}

@DeleteOperation
public String goodbyeNameSelector(@Selector String name) {
  return "Goodbye " + name;
}
Çağırmak için şöyle yaparız
> curl --location --request DELETE 'http://localhost:8080/actuator/helloworld?name=Jamie'
Goodbye Jamie

> curl --location --request DELETE 'http://localhost:8080/actuator/helloworld/Alex'
Goodbye Alex

Hiç yorum yok:

Yorum Gönder