RecipientList Annotation has been edited by James Strachan (Oct 01, 2008).

(View changes)

Content:

@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.

public class RouterBean {

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

Reply via email to