Versions Compared

Key

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

...

Code Block
public class Foo {
	
    @Consume(uri = "activemq:queue:books.new")
    public void doSomething(@JSonPath@JsonPath("$.store.book[*].author") String author, @Body String json) {
      // process the inbound message here
    }
}

...