@MatrixParam with example

What is @MatrixParam ? It is the annotation defined in JAX-RS specification which is used to resolve the values passed in the URL with the Key-Value pair. Each key value pair will be separated by semicolon(;) This annotation will be used at the method argument level. We should use the key with @MatrixParam annotation to […]

Share this article on

Rest project with JAXB

JAXB Java Architecture for XML Binding (JAXB) is an XML-to-Java binding technology which helps to transfer the java object to XML and vice versa. In other words, JAXB is used to marshal the Java object to XML and unmarshal the XML file to java object. We can use JAXB with JAX-RS to return Java object […]

Share this article on
< Previous Next >