4 Ocak 2023 Çarşamba

SpringBoot Actuator Custom Endpoint @WriteOperation Anotasyonu

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

Örnek
Şöyle yaparız
@WriteOperation
public String helloNameBody(String name) {
  return "Hello " + name;
}
Çağırmak için şöyle yaparız
> curl --location --request POST 'http://localhost:8080/actuator/helloworld' \
> --header 'Content-Type: application/json' \
> --data-raw '{
>     "name": "Albie"
> }'
Hello Albie



Hiç yorum yok:

Yorum Gönder