eBook – Guide Spring Cloud – NPI EA (cat=Spring Cloud)
announcement - icon

Let's get started with a Microservice Architecture with Spring Cloud:

>> Join Pro and download the eBook

eBook – Mockito – NPI EA (tag = Mockito)
announcement - icon

Mocking is an essential part of unit testing, and the Mockito library makes it easy to write clean and intuitive unit tests for your Java code.

Get started with mocking and improve your application tests using our Mockito guide:

Download the eBook

eBook – Java Concurrency – NPI EA (cat=Java Concurrency)
announcement - icon

Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.

Get started with understanding multi-threaded applications with our Java Concurrency guide:

>> Download the eBook

eBook – Reactive – NPI EA (cat=Reactive)
announcement - icon

Spring 5 added support for reactive programming with the Spring WebFlux module, which has been improved upon ever since. Get started with the Reactor project basics and reactive programming in Spring Boot:

>> Join Pro and download the eBook

eBook – Java Streams – NPI EA (cat=Java Streams)
announcement - icon

Since its introduction in Java 8, the Stream API has become a staple of Java development. The basic operations like iterating, filtering, mapping sequences of elements are deceptively simple to use.

But these can also be overused and fall into some common pitfalls.

To get a better understanding on how Streams work and how to combine them with other language features, check out our guide to Java Streams:

>> Join Pro and download the eBook

eBook – Jackson – NPI EA (cat=Jackson)
announcement - icon

Do JSON right with Jackson

Download the E-book

eBook – HTTP Client – NPI EA (cat=Http Client-Side)
announcement - icon

Get the most out of the Apache HTTP Client

Download the E-book

eBook – Maven – NPI EA (cat = Maven)
announcement - icon

Get Started with Apache Maven:

Download the E-book

eBook – Persistence – NPI EA (cat=Persistence)
announcement - icon

Working on getting your persistence layer right with Spring?

Explore the eBook

eBook – RwS – NPI EA (cat=Spring MVC)
announcement - icon

Building a REST API with Spring?

Download the E-book

Course – LS – NPI EA (cat=Jackson)
announcement - icon

Get started with Spring and Spring Boot, through the Learn Spring course:

>> LEARN SPRING
Course – RWSB – NPI EA (cat=REST)
announcement - icon

Explore Spring Boot 3 and Spring 6 in-depth through building a full REST API with the framework:

>> The New “REST With Spring Boot”

Course – LSS – NPI EA (cat=Spring Security)
announcement - icon

Yes, Spring Security can be complex, from the more advanced functionality within the Core to the deep OAuth support in the framework.

I built the security material as two full courses - Core and OAuth, to get practical with these more complex scenarios. We explore when and how to use each feature and code through it on the backing project.

You can explore the course here:

>> Learn Spring Security

Course – LSD – NPI EA (tag=Spring Data JPA)
announcement - icon

Spring Data JPA is a great way to handle the complexity of JPA with the powerful simplicity of Spring Boot.

Get started with Spring Data JPA through the guided reference course:

>> CHECK OUT THE COURSE

Partner – Moderne – NPI EA (cat=Spring Boot)
announcement - icon

Refactor Java code safely — and automatically — with OpenRewrite.

Refactoring big codebases by hand is slow, risky, and easy to put off. That’s where OpenRewrite comes in. The open-source framework for large-scale, automated code transformations helps teams modernize safely and consistently.

Each month, the creators and maintainers of OpenRewrite at Moderne run live, hands-on training sessions — one for newcomers and one for experienced users. You’ll see how recipes work, how to apply them across projects, and how to modernize code with confidence.

Join the next session, bring your questions, and learn how to automate the kind of work that usually eats your sprint time.

Partner – LambdaTest – NPI EA (cat=Testing)
announcement - icon

Regression testing is an important step in the release process, to ensure that new code doesn't break the existing functionality. As the codebase evolves, we want to run these tests frequently to help catch any issues early on.

The best way to ensure these tests run frequently on an automated basis is, of course, to include them in the CI/CD pipeline. This way, the regression tests will execute automatically whenever we commit code to the repository.

In this tutorial, we'll see how to create regression tests using Selenium, and then include them in our pipeline using GitHub Actions:, to be run on the LambdaTest cloud grid:

>> How to Run Selenium Regression Tests With GitHub Actions

Course – LJB – NPI EA (cat = Core Java)
announcement - icon

Code your way through and build up a solid, practical foundation of Java:

>> Learn Java Basics

1. Introduction

In this tutorial, we’ll explore the importance of configuring connection/read timeouts in REST clients. We’ll demonstrate this using Jersey, a common JAX-RS implementation.

2. Why Set Connection and Read Timeouts?

Timeout settings for sockets are vital in applications where responsiveness and reliability are critical. For example, delays can impact user experience or result in transaction failures in financial or e-commerce applications.

Similarly, a misconfigured timeout in distributed systems can cause cascading delays and resource bottlenecks. Choosing appropriate timeout values ensures our application remains robust and responsive even in challenging network conditions.

3. Dependencies and Basic Setup

To understand how timeouts work, we’ll configure a Jersey client to call a slow REST API and observe the behavior when the response takes longer than the configured timeout.

3.1. Dependencies

For the client side, we’ll need jersey-client for HTTP communication with the API:

<dependency>
    <groupId>org.glassfish.jersey.core</groupId>
    <artifactId>jersey-client</artifactId>
    <version>3.1.9</version>
</dependency>

For the server, we’ll need jersey-server:

<dependency>
    <groupId>org.glassfish.jersey.core</groupId>
    <artifactId>jersey-server</artifactId>
    <version>3.1.9</version>
</dependency>

Then, for running the server in tests, we’ll need jaxrs-ri, jersey-container-grizzly2-servlet, and jersey-test-framework-provider-grizzly2:

<dependency>
    <groupId>org.glassfish.jersey.bundles</groupId>
    <artifactId>jaxrs-ri</artifactId>
    <version>3.1.9</version>
</dependency>
<dependency>
    <groupId>org.glassfish.jersey.containers</groupId>
    <artifactId>jersey-container-grizzly2-servlet</artifactId>
    <version>3.1.9</version>
</dependency>
<dependency>
    <groupId>org.glassfish.jersey.test-framework.providers</groupId>
    <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
    <version>3.1.9</version>
    <scope>test</scope>
</dependency>

3.2. REST API Server

The REST API contains a single endpoint we’ll use in our tests. The operation’s implementation is irrelevant as we aim to simulate a delayed response. We’ll introduce some sleep time to simulate a slow server:

@Path("/timeout")
public class TimeoutResource {

    public static final long STALL = TimeUnit.SECONDS.toMillis(2l);

    @GET
    public String get() throws InterruptedException {
        Thread.sleep(STALL);
        return "processed";
    }
}

Later, we’ll use the STALL variable to determine our timeout values.

3.3. Client Setup

Our client only needs the endpoint URI and a general get(Client) method to access it. Let’s also define our TIMEOUT as half the STALL variable we defined earlier so we can enforce a timeout scenario:

public class JerseyTimeoutClient {

    private static final long TIMEOUT = TimeoutResource.STALL / 2;

    private final String endpoint;

    public JerseyTimeoutClient(String endpoint) {
        this.endpoint = endpoint;
    }

    private String get(Client client) {
        return client.target(endpoint)
          .request()
          .get(String.class);
    }

    // ...
}

3.4. Test Setup

We’ll define two clients, one to test read timeouts and another to test connection timeouts.

Let’s start with the endpoint’s base address:

static final URI BASE = URI.create("http://localhost:8082");

To test read timeouts, we’ll use the correct endpoint. Since our timeout is half the time the server takes to process requests, a SocketTimeoutException is guaranteed:

static final String CORRECT_ENDPOINT = BASE + "/timeout";
JerseyTimeoutClient readTimeoutClient = new JerseyTimeoutClient(CORRECT_ENDPOINT);

Then, to test connection timeouts, we’ll replace the host with an unreachable IP address:

static final String INCORRECT_ENDPOINT = BASE.toString()
  .replace(BASE.getHost(), "10.255.255.1"); 

JerseyTimeoutClient connectTimeoutClient = new JerseyTimeoutClient(INCORRECT_ENDPOINT);

Finally, let’s add an assertion method to reuse in our tests. It starts by catching the ProcessingException thrown by JAX-RS, and then we check the cause, which should always be a SocketTimeoutException. In the end, we check the message to differentiate between connection and read timeouts:

private void assertTimeout(String message, Executable executable) {
    ProcessingException exception = assertThrows(ProcessingException.class, executable);

    Throwable cause = exception.getCause();
    assertInstanceOf(SocketTimeoutException.class, cause);

    assertEquals(message, cause.getMessage());
}

Now that we’re ready to test, let’s see how to configure timeouts.

4. Using the ClientBuilder API

Let’s go back to JerseyTimeoutClient and add our first implementation using ClientBuilder. We can set both timeout configurations (connectTimeout() and readTimeout()) for the same client. We call the endpoint by passing our newly created client to the get() method we created earlier:

public String viaClientBuilder() {
    ClientBuilder builder = ClientBuilder.newBuilder()
      .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS)
      .readTimeout(TIMEOUT, TimeUnit.MILLISECONDS);

    return get(builder.build());
}

Let’s test the read timeout:

@Test
void givenCorrectEndpoint_whenClientBuilderAndSlowServer_thenReadTimeout() {
    assertTimeout("Read timed out", readTimeoutClient::viaClientBuilder);
}

Now for the connection timeout test:

@Test 
void givenIncorrectEndpoint_whenClientBuilder_thenConnectTimeout() { 
    assertTimeout("Connect timed out", connectTimeoutClient::viaClientBuilder); 
}

All clients generated with this builder set both timeouts to the desired values. If not set, the default behavior is to wait indefinitely for a response, which is the same as setting them to zero.

Next, based on different requirements, let’s explore three alternative methods for setting these timeouts on a Client.

5. Using the ClientConfig Object

We can also configure timeouts via the ClientConfig, and we can use it when building a new client:

public String viaClientConfig() {
    ClientConfig config = new ClientConfig();
    config.property(ClientProperties.CONNECT_TIMEOUT, TIMEOUT);
    config.property(ClientProperties.READ_TIMEOUT, TIMEOUT);

    return get(ClientBuilder.newClient(config));
}

Using the ClientConfig is helpful if we want to apply the same configuration to many clients. This is especially handy when we have many complex, dynamic configurations that we want to make reusable.

6. Using the client.property() Method

We can also set these properties directly on the Client:

public String viaClientProperty() {
    Client client = ClientBuilder.newClient();
    client.property(ClientProperties.CONNECT_TIMEOUT, TIMEOUT);
    client.property(ClientProperties.READ_TIMEOUT, TIMEOUT);

    return get(client);
}

This is necessary for Jersey versions before 2.1 because connectTimeout() for the ClientBuilder was unavailable.

7. Setting Timeouts Per-Request

Finally, let’s include a method that sets the timeout on the request using the property() method. We’ll start by overriding our get() method to include a timeout parameter:

private String get(Client client, Long requestTimeout) {
    Builder request = client.target(endpoint).request();

    if (requestTimeout != null) {
        request.property(ClientProperties.CONNECT_TIMEOUT, requestTimeout);
        request.property(ClientProperties.READ_TIMEOUT, requestTimeout);
    }

    return request.get(String.class);
}

Now, we can pass the desired request timeout value:

public String viaRequestProperty() {
    return get(ClientBuilder.newClient(), TIMEOUT);
}

We use this setup to override global settings for a specific request or have variable demands for timeout values.

8. Conclusion

In this article, we learned how configuring the connection and read timeouts is crucial for building robust and responsive REST clients. By understanding the different approaches provided by Jersey, such as ClientBuilder, ClientConfig, and per-request configurations, we can tailor our client behavior to meet specific application needs.

The code backing this article is available on GitHub. Once you're logged in as a Baeldung Pro Member, start learning and coding on the project.
Baeldung Pro – NPI EA (cat = Baeldung)
announcement - icon

Baeldung Pro comes with both absolutely No-Ads as well as finally with Dark Mode, for a clean learning experience:

>> Explore a clean Baeldung

Once the early-adopter seats are all used, the price will go up and stay at $33/year.

eBook – HTTP Client – NPI EA (cat=HTTP Client-Side)
announcement - icon

The Apache HTTP Client is a very robust library, suitable for both simple and advanced use cases when testing HTTP endpoints. Check out our guide covering basic request and response handling, as well as security, cookies, timeouts, and more:

>> Download the eBook

eBook – Java Concurrency – NPI EA (cat=Java Concurrency)
announcement - icon

Handling concurrency in an application can be a tricky process with many potential pitfalls. A solid grasp of the fundamentals will go a long way to help minimize these issues.

Get started with understanding multi-threaded applications with our Java Concurrency guide:

>> Download the eBook

eBook – Java Streams – NPI EA (cat=Java Streams)
announcement - icon

Since its introduction in Java 8, the Stream API has become a staple of Java development. The basic operations like iterating, filtering, mapping sequences of elements are deceptively simple to use.

But these can also be overused and fall into some common pitfalls.

To get a better understanding on how Streams work and how to combine them with other language features, check out our guide to Java Streams:

>> Join Pro and download the eBook

eBook – Persistence – NPI EA (cat=Persistence)
announcement - icon

Working on getting your persistence layer right with Spring?

Explore the eBook

Course – LS – NPI EA (cat=REST)

announcement - icon

Get started with Spring Boot and with core Spring, through the Learn Spring course:

>> CHECK OUT THE COURSE

Partner – Moderne – NPI EA (tag=Refactoring)
announcement - icon

Modern Java teams move fast — but codebases don’t always keep up. Frameworks change, dependencies drift, and tech debt builds until it starts to drag on delivery. OpenRewrite was built to fix that: an open-source refactoring engine that automates repetitive code changes while keeping developer intent intact.

The monthly training series, led by the creators and maintainers of OpenRewrite at Moderne, walks through real-world migrations and modernization patterns. Whether you’re new to recipes or ready to write your own, you’ll learn practical ways to refactor safely and at scale.

If you’ve ever wished refactoring felt as natural — and as fast — as writing code, this is a good place to start.

eBook Jackson – NPI EA – 3 (cat = Jackson)