English 中文(简体)
Quarkus Artemis Jms 图书馆不向Artemis MQ 的死字队传递讯息
原标题:Quarkus Artemis Jms library does not deliver message to dead-letter-queue on Artemis MQ
最佳回答
The messages are not sent to the dead letter address because max-delivery-attempts is 0. You must set max-delivery-attempts to a positive value to send the undelivered messages to the dead letter address, see QueueImpl. To send the messages to the dead letter address after the first rollback set max-delivery-attempts to 1, i.e. DLQ 1 ...
问题回答

暂无回答




相关问题
Quarkus liveness doesn t work on Minikube

When I run locally (mvn compile quarkus:dev), I can access the /q/health endpoints. When I deploy the native image to docker (docker run etc etc), I can access the /q/health endpoints. When I deploy ...

Bridge JMS Message to SSE Endpoint in Quarkus

In Spring project, I used Sinks to emit events into a SSE endpoint, it worked well, check: https://github.com/hantsy/spring-graphql-sample/blob/master/dgs-subscription-sse/src/main/kotlin/com/example/...

How to resolve multi-module classpath beans in Quarkus?

In Spring it s possible to define bean dependencies in separate modules, which are then resolved via the classpath at runtime. Is it possible to do something similar in Quarkus? For example, a multi-...

Issue with AsyncHealthCheck in extension

I have an issue getting an AsyncHealthCheck working; @Readiness @ApplicationScoped public class CoreApiHealthCheck implements AsyncHealthCheck { @RestClient OqmCoreApiClientService ...

热门标签