Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 24, 2015 08:53
Show Gist options
  • Select an option

  • Save javaeeeee/740429675a511f41cd4a to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/740429675a511f41cd4a to your computer and use it in GitHub Desktop.
Jersey client method chaining
actual = resource.client()
.target("http://localhost:8080/hello")
.request(MediaType.TEXT_PLAIN)
.get(String.class);
assertEquals(expected, actual);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment