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.

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

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

Distributed systems often come with complex challenges such as service-to-service communication, state management, asynchronous messaging, security, and more.

Dapr (Distributed Application Runtime) provides a set of APIs and building blocks to address these challenges, abstracting away infrastructure so we can focus on business logic.

In this tutorial, we'll focus on Dapr's pub/sub API for message brokering. Using its Spring Boot integration, we'll simplify the creation of a loosely coupled, portable, and easily testable pub/sub messaging system:

>> Flexible Pub/Sub Messaging With Spring Boot and Dapr

1. Overview

When working with time and duration calculations in Java, the TimeUnit enum provides a convenient way to perform time conversions between different units.

Whether we want to convert seconds to minutes, milliseconds to hours, or perform any other time unit conversion, we can use TimeUnit to simplify the code, get accurate results, and make things more readable.

In this tutorial, we’ll look at using TimeUnit to convert time in Java.

2. Understanding TimeUnit

TimeUnit is an enum, included in the java.util.concurrent package, that represents various units of time, ranging from nanoseconds to days. It provides a set of predefined constants, each corresponding to a specific unit of time, including:

  • DAYS
  • HOURS
  • MINUTES
  • SECONDS
  • MILLISECONDS
  • MICROSECONDS
  • NANOSECONDS

These constants serve as the basis for time conversions.

3. Converting Time Using TimeUnit

To perform a time conversion, we need to have a value representing the duration we want to convert and specify the target unit we wish to convert to. TimeUnit offers several methods for converting time between units, such as convert() or toXXX(), where XXX represents the target unit.

3.1. Using the convert() Method

First, let’s look at the convert(long sourceDuration, TimeUnit sourceUnit) method, which converts the given time duration in a given unit to the unit specified by the enum value.

Let’s convert a simple integer to minutes:

long minutes = TimeUnit.MINUTES.convert(60, TimeUnit.SECONDS);
assertThat(minutes).isEqualTo(1);

In this example, we start with a value of 60 seconds and then convert it to minutes. We specify the source time unit as the second argument. The output unit is always determined by the enum value.

Let’s check out another example, where we do the reverse conversion:

long seconds = TimeUnit.SECONDS.convert(1, TimeUnit.MINUTES); 
assertThat(seconds).isEqualTo(60);

As we see, the convert() method converts time between different units.

3.2. Using the toXXX() Method

Let’s now explore the toXXX(long sourceDuration) methods. Here the XXX in the signature specifies the target unit.

We can choose units with toNanos()toMicros(), toMillis(), toSeconds(), toMinutes(), toHours(), and toDays().

Now let’s rewrite both previous snippets using the toXXX() methods:

long minutes = TimeUnit.SECONDS.toMinutes(60);
assertThat(minutes).isEqualTo(1);

As before, we’ve just converted 60 seconds to minutes.

And we can convert the other way:

long seconds = TimeUnit.MINUTES.toSeconds(1);
assertThat(seconds).isEqualTo(60);

As expected, the above examples produce the same result as before, so both signatures are equivalent. But unlike convert(), when we use the toXXX() methods, the enum value represents the source time unit.

4. Specific Use Cases

Now that we know how to convert time using the TimeUnit methods, let’s explore some more detailed scenarios.

4.1. Negative Inputs

Firstly, let’s check if the converting methods support negative input values:

long minutes = TimeUnit.SECONDS.toMinutes(-60);
assertThat(minutes).isEqualTo(-1);

The given example shows that negative inputs are also handled by the converting methods, and the returned result is still correct.

4.2. Rounding Handling

Let’s now check what happens if we convert a smaller unit to a larger one, expecting a target non-integer result. We know that all methods only declare long as a return type, so decimal results cannot be returned.

Let’s test the rounding rule by converting seconds to minutes:

long positiveUnder = TimeUnit.SECONDS.toMinutes(59);
assertThat(positiveUnder).isEqualTo(0);
long positiveAbove = TimeUnit.SECONDS.toMinutes(61);
assertThat(positiveAbove).isEqualTo(1);

Then, let’s check the negative inputs:

long negativeUnder = TimeUnit.SECONDS.toMinutes(-59);
assertThat(negativeUnder).isEqualTo(0);

long negativeAbove = TimeUnit.SECONDS.toMinutes(-61);
assertThat(negativeAbove).isEqualTo(-1);

As we see, all conversions are handled without any errors.

We should note that all methods implement a rounding toward zero rule that truncates the decimal part.

4.3. Overflow Handling

As we know, all primitives have their value limits which cannot be exceeded. But what happens if the result overflows the limit?

Let’s check the result of converting the minimum and maximum long values of days to milliseconds:

long maxMillis = TimeUnit.DAYS.toMillis(Long.MAX_VALUE);
assertThat(maxMillis).isEqualTo(Long.MAX_VALUE);
long minMillis = TimeUnit.DAYS.toMillis(Long.MIN_VALUE);
assertThat(minMillis).isEqualTo(Long.MIN_VALUE);

The above code executes without throwing any exceptions. We should note that the result isn’t valid, because the overflow results are always truncated to minimum or maximum values defined by the long primitive.

5. Converting to the Finest Unit

Sometimes, we may need to convert a duration to the finest unit available in TimeUnit, such as converting seconds to the appropriate combination of hours, minutes, and leftover seconds. Unfortunately, there’s no method for this. This is because all the conversion methods always return the total number of whole periods within a given duration.

To convert the input to the finest unit, we need to implement a custom function. Let’s use the value of 3672 seconds and fetch an appropriate combination of time units – we expect the value of 1 hour, 1 minute, and 12 seconds.

To extract hours we can use:

long inputSeconds = 3672;
long hours = TimeUnit.SECONDS.toHours(inputSeconds);
assertThat(hours).isEqualTo(1);

Now, if we want to extract the remaining minutes, we should subtract the sum of seconds contained in hours from the input value, and then use this value for further operations:

long secondsRemainingAfterHours = inputSeconds - TimeUnit.HOURS.toSeconds(hours);
long minutes = TimeUnit.SECONDS.toMinutes(secondsRemainingAfterHours);
assertThat(minutes).isEqualTo(1);

We’ve just successfully calculated the hours and minutes based on the input data. Finally, we need to retrieve the remaining seconds.

To do this, we repeat the subtraction logic, remembering to adjust the parameters:

long seconds = secondsRemainingAfterHours - TimeUnit.MINUTES.toSeconds(minutes);
assertThat(seconds).isEqualTo(12);

In the example, we’ve just converted 3672 milliseconds to the finest unit representation, which includes hours, minutes, and seconds.

6. Conclusion

In this article, we explored various ways to convert time using the TimeUnit enumeration in Java.

The TimeUnit enum provides a convenient and efficient way to convert between different units using convert() and toXXX() methods.

In addition, it also handles negative inputs and returns correct results. We can easily convert durations, regardless of whether we’re converting from a smaller to a larger unit or vice versa, with rounding toward zero. It also implements basic overflow protection by trimming the result to borderline values.

If we want to convert a source duration to the appropriate combination of other units (such as days, hours, minutes, and seconds), we can easily implement additional logic. All converters return the total number of specified periods within a specified duration.

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)