Use the @MatrixParam annotation

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 1803

This topic has not yet been written. The content below is from the topic description.
The @MatrixParam annotation allows you to inject URI matrix paramters into your method invocation @GET public String getBook(@MatrixParam("name") String name, @MatrixParam("author") String author) {...} There is one big problem with @MatrixParam that the current version of the specification does not resolve. What if the same MatrixParam exists twice in different path segments? In this case, right now, its probably better to use PathParam combined with PathSegment.