Rest service CRUD operations with JSP and ajax

In the previous article, we have seen CRUD operations in Rest service with Advanced rest client Let’s do the same using JSP page and ajax as a client 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

Restful java client with java.net.URL

Restful services with Jersey and java.net.URL Java has introduced the class called “URL” (Uniform Resource Locator) under java.net package which basically points to any resource on the web. This class can be used as a Rest client to perform some of the basic operations on Rest service. Create a new Maven Web project in eclipse […]

Share this article on
< Previous Next >