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

CRUD operations with JAX-RS and JAXB

CRUD stands for Create,Read,Update and Delete operation These are the most common operations that we perform in any application. Let’s do these operations using Rest service with Jersey. Requirement : Perform CRUD operations on USER object. We have User Domain object, we can insert User data, read the inserted data, Update some user information and […]

Share this article on
< Previous Next >