Created
March 31, 2014 04:50
-
-
Save mjtoolbox/9885493 to your computer and use it in GitHub Desktop.
RestWebServiceTest Client code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mjtoolbox.wsclient; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.util.List; | |
import java.util.Properties; | |
import javax.ws.rs.client.Client; | |
import javax.ws.rs.client.ClientBuilder; | |
import javax.ws.rs.client.Entity; | |
import javax.ws.rs.client.Invocation; | |
import javax.ws.rs.client.WebTarget; | |
import javax.ws.rs.core.MediaType; | |
import javax.ws.rs.core.Response; | |
import org.apache.log4j.Logger; | |
import com.mjtoolbox.ws.StringListConverter; | |
import com.mjtoolbox.ws.Student; | |
import com.mjtoolbox.ws.StudentWrapper; | |
import com.sun.istack.Builder; | |
public class StudentWSClient { | |
private Logger logger = Logger.getLogger(this.getClass()); | |
private StringListConverter converter = new StringListConverter(); | |
// Default URL | |
private String BASE_URL = "http://localhost:8080/RestWebServiceTest/rs/json"; | |
private Properties properties = new Properties(); | |
private void initProperties() { | |
InputStream is = getClass().getClassLoader().getResourceAsStream("application.properties"); | |
if (is != null) { | |
try { | |
properties.load(is); | |
BASE_URL = (String)properties.getProperty("student.restws.url"); | |
} catch (IOException e) { | |
logger.error("Error when reading properties: ", e); | |
throw new RuntimeException("Can not load application.properties file."); | |
} | |
} else { | |
logger.error("Error when finding application.properties."); | |
throw new RuntimeException("Error when finding application.properties."); | |
} | |
} | |
/** | |
* Retrieve over 20 years | |
* @param anAge | |
* @return | |
*/ | |
public List<Student> getStudentsOverAge(String anAge) { | |
Client client = ClientBuilder.newClient(); | |
WebTarget myResource = client.target(BASE_URL + "/overAge").path(anAge); | |
StudentWrapper wrapper = null; | |
try { | |
wrapper = myResource.request(MediaType.APPLICATION_JSON).get( StudentWrapper.class); | |
} catch (Exception e) { | |
System.out.println("Exception : " + e.getMessage()); | |
e.printStackTrace(); | |
} | |
return wrapper.getList(); | |
} | |
/** | |
* Students by name | |
* @param studentNames | |
* @return | |
*/ | |
public List<Student> getStudentsByName(List<String> studentNames) { | |
Client client = ClientBuilder.newClient(); | |
WebTarget myResource = client.target(BASE_URL + "/studentsByName").queryParam( "names", converter.toString(studentNames)); | |
StudentWrapper wrapper = null; | |
try { | |
wrapper = myResource.request(MediaType.APPLICATION_JSON).get( StudentWrapper.class); | |
} catch (Exception e) { | |
System.out.println("Exception : " + e.getMessage()); | |
e.printStackTrace(); | |
} | |
return wrapper.getList(); | |
} | |
/** | |
* | |
* @param studentNames | |
* @return | |
*/ | |
public List<Student> getStudentsByNameJson(List<String> studentNames) { | |
Client client = ClientBuilder.newClient(); | |
String nameJson = converter.toJson(studentNames); | |
WebTarget myResource = client.target(BASE_URL + "/studentsByNameJson"); | |
StudentWrapper wrapper = null; | |
try { | |
wrapper = myResource.request(MediaType.APPLICATION_JSON).put(Entity.text(nameJson), StudentWrapper.class); | |
} catch (Exception e) { | |
System.out.println("Exception : " + e.getMessage()); | |
e.printStackTrace(); | |
} | |
return wrapper.getList(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment