Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

@RecipientList Annotation

As of 1.5.0 we now support the use of @RecipientList on a bean method to easily create a dynamic Recipient List using a Java method.

Code Block
java
java

public class RouterBean {

    @MessageDriven(uri = "activemq:foo")
    @RecipientList
    public String[] route(String body) {
        return new String[]{"activemq:bar", "activemq:whatnot"};
    }
}

...