...
Code Block |
---|
language | java |
---|
title | Code Sample invoking a GET |
---|
linenumbers | true |
---|
|
package com.celestial.jaxrs.client;
import com.celestial.dbankbusinessobjects.User;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
import com.sun.jersey.api.json.JSONConfiguration;
/**
*
* @author Selvyn
*/
public class TestServices
{
public static void main(String[] args)
{
try
{
ClientConfig clientConfig = new DefaultClientConfig();
clientConfig.getFeatures().put(
JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);
Client client = Client.create(clientConfig);
WebResource webResource = client
.resource("http://localhost:8084/dbwstier/dbrest/user/fu/selvyn/gradprog2016");
ClientResponse response = webResource.accept("application/json")
.type("application/json").get(ClientResponse.class);
if (response.getStatus() != 200)
{
throw new RuntimeException("Failed : HTTP error code : "
+ response.getStatus());
}
String output = response.getEntity(String.class);
System.out.println("Server response .... \n");
System.out.println(output);
} catch (Exception e)
{
e.printStackTrace();
}
}
}
|
The next examples only show the body changed code
Code Block |
---|
language | java |
---|
title | Sample Code invoking a POST |
---|
linenumbers | true |
---|
|
|