I need to add resilience4j BulkHead filter on Spring Cloud Gateway routes just like we add circuitBreaker filter like below
cloud:
gateway:
routes:
- id: test-service
uri: http://localhost:8080
predicates:
- Path=/testService/**
filters:
- CircuitBreaker=testA
any help on this please?