Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: update xpath example to use custom namespace defined by custom xpath annotation

...

Code Block
public class Foo {
	
    @MessageDriven(uri = "activemq:my.queue")
    public void doSomething(@Path("/ns1:foo/ns2:bar/text()") String correlationID, @Body String body) {
		// process the inbound message here
    }
}

...