Skip to content

aruld/jersey2-jetty-connector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Jersey 2 JAX-RS Client Connector for Jetty

Jetty connector is based on Jersey 2 JAX-RS Client framework. It implements support for synchronous and asynchronous client invocation using Jetty 9 Fluent Client API to perform HTTP and HTTPS requests.

Features include Redirect support, Cookies support, Authentication support, Forward proxy support.

Supported HTTP verbs: GET, POST, PUT, DELETE, HEAD, OPTIONS, TRACE, CONNECT, MOVE

Requirements

JDK 7 is required to run Jetty 9 connector.

Coming in Jersey 2.5

This connector is integrated in Jersey 2.5 release. It also includes support for Jetty HTTP and Servlet container in addition to the Jetty Client support.

Setup

  1. Non-maven projects can download the snapshot jar from buildhive.
  2. git clone https://github.com/aruld/jersey2-jetty-connector.git
  3. mvn package
  4. Include this in your Maven POM.
    <dependency>
        <groupId>org.glassfish.jersey.connectors</groupId>
        <artifactId>jersey-jetty-connector</artifactId>
        <version>2.5</version>
    </dependency>

Basic Usage

ClientConfig cc = new ClientConfig();
cc.connector(new JettyConnector(cc));
cc.register(new LoggingFilter());
Client client = ClientBuilder.newClient(cc);

WebTarget target = client.target("http://localhost:8080");

// Perform GET
Response response = target.path("test").request().get();
String entity = response.readEntity(String.class);
System.out.println(entity);

// Perform async GET
Future<Response> future = target.path("test").request().async().get();
response = future.get(3, TimeUnit.SECONDS);
entity = response.readEntity(String.class);
System.out.println(entity);

// Shutdown the client
client.close();

Basic Auth

ClientConfig cc = new ClientConfig();
cc.connector(new JettyConnector(cc));
Client client = ClientBuilder.newClient(cc);
client.register(new HttpBasicAuthFilter("user", "password"));

Preemptive Basic Auth

ClientConfig cc = new ClientConfig();
cc.property(JettyClientProperties.PREEMPTIVE_BASIC_AUTHENTICATION, new BasicAuthentication(getBaseUri(), "WallyWorld", "name", "password"));
cc.connector(new JettyConnector(cc));
Client client = ClientBuilder.newClient(cc);

SSL

SslConfigurator sslConfig = SslConfigurator.newInstance()
        .trustStoreBytes(ByteStreams.toByteArray(trustStore))
        .trustStorePassword("asdfgh")
        .keyStoreBytes(ByteStreams.toByteArray(keyStore))
        .keyPassword("asdfgh");

ClientConfig cc = new ClientConfig();
cc.property(JettyClientProperties.SSL_CONFIG, sslConfig);
cc.connector(new JettyConnector(cc));
Client client = ClientBuilder.newClient(cc);

Cookie Handling

ClientConfig cc = new ClientConfig();
cc.property(JettyClientProperties.DISABLE_COOKIES, true);//ignore all cookies
Client client = ClientBuilder.newClient(cc.connector(new JettyConnector(cc.getConfiguration())));

Redirects

ClientConfig cc = new ClientConfig().property(ClientProperties.FOLLOW_REDIRECTS, true);//global redirect
cc.connector(new JettyConnector(cc));
Client c = ClientBuilder.newClient(cc);
WebTarget t = c.target(u);
t.property(ClientProperties.FOLLOW_REDIRECTS, false);//per-request override

Timeouts

ClientConfig cc = new ClientConfig().property(ClientProperties.READ_TIMEOUT, 1000).property(ClientProperties.CONNECT_TIMEOUT, 1000);
cc.connector(new JettyConnector(cc));
Client c = ClientBuilder.newClient(cc);

Check out tests for more usage!

About

Jersy based JAX-RS Client Transport via Jetty

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages