Damien
Damien

Reputation: 4121

jms message interceptor

Is there anyway to intercept messages going to/from a java app and an activeMQ queue?

Any opensource utilities I can avail of?

Thanks Damien

Upvotes: 0

Views: 1974

Answers (1)

duffymo
duffymo

Reputation: 308998

You can use aspect-oriented programming.

But it does beg the question: why would you want to do this? Logging, monitoring, alerting? Those are all cross-cutting concerns that AOP can address.

Upvotes: 1

Related Questions