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. Overview

Handling date and time in Java using the java.time package is efficient, but sometimes we may encounter the DateTimeParseException error with the message “Unable to obtain LocalDateTime from TemporalAccessor“. This issue typically arises due to an incompatibility between the expected date-time format and the actual input.

This article explains why this exception occurs, explores its common causes, and provides effective strategies to prevent and fix it.

2. Understanding the Exception

The “Unable to obtain LocalDateTime from TemporalAccessor” exception occurs when Java’s date-time parser fails to extract a valid LocalDateTime object from a TemporalAccessor, such as LocalDate, ZonedDateTime, or OffsetDateTime. The root cause is often an improperly formatted or incomplete input string.

LocalDateTime requires both a date and a time component. If an input string lacks required components or doesn’t match the expected format, the parsing process fails, resulting in this exception. We often assume that Java can automatically infer missing time values, but this isn’t the case.

Let’s consider the following example, where a date string is incorrectly parsed as LocalDateTime:

public static void main(String[] args) {
    String dateTimeStr = "20250327";
    DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
    LocalDateTime localDateTime = LocalDateTime.parse(dateTimeStr, formatter);
}

When executed, this code throws the following exception:

java.time.format.DateTimeParseException: Text '20250327' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {},ISO resolved to 2025-03-27 of type java.time.format.Parsed

The error occurs because LocalDateTime requires both date and time, but the input only contains a date.

3. Common Causes and Solutions

Before diving into specific causes, it’s important to recognize that date-time parsing issues often stem from assumptions about how input data is structured. The java.time API is strict about enforcing format rules, meaning that any deviation, such as a missing time component, an incorrect format, or an unexpected time zone, can trigger an exception.

Below, we explore the most common causes of this error and look at solutions to handle them effectively.

3.1. Missing Time Component in Input String

When an input string contains only a date, such as “2024-03-25“, but is parsed as a LocalDateTime, the parsing fails because LocalDateTime requires both a date and a time component. This results in a DateTimeParseException.

To resolve this, we can parse the date as a LocalDate instead of LocalDateTime:

LocalDate date = LocalDate.parse("2024-03-25", DateTimeFormatter.ISO_LOCAL_DATE);

Alternatively, if we require LocalDateTime, we can append a default time value to the input string, such as “T00:00:00“:

String dateTimeStr = "2024-03-25T00:00:00";
LocalDateTime dateTime = LocalDateTime.parse(dateTimeStr, DateTimeFormatter.ISO_LOCAL_DATE_TIME);

3.2. Parsing DayOfWeek as LocalDateTime

The DayOfWeek enum represents a day of the week (e.g., MONDAY, FRIDAY), but it doesn’t include any date or time information. Attempting to use a DayOfWeek value directly as a LocalDateTime results in an exception since LocalDateTime requires both a date and a time.

If we need a complete LocalDateTime for a specific weekday, we can determine the next occurrence of that day and combine it with a chosen time:

DayOfWeek targetDay = DayOfWeek.FRIDAY;
LocalDate today = LocalDate.now();
LocalDate nextTargetDate = today.with(TemporalAdjusters.next(targetDay));

LocalTime time = LocalTime.of(14, 30);
LocalDateTime dateTime = LocalDateTime.of(nextTargetDate, time);

This approach ensures that we correctly associate the DayOfWeek value with an actual date before combining it with a time to form a valid LocalDateTime.

3.3. Parsing LocalTime as LocalDateTime

When an input string contains only a time, such as “14:30:00“, and is parsed as a LocalDateTime, it fails because LocalDateTime requires both a date and a time component. LocalTime provides only the time portion, so parsing it as LocalDateTime results in an exception.

To fix this, we combine LocalTime with a LocalDate to form a complete LocalDateTime:

LocalDate date = LocalDate.of(2024, 3, 25);
LocalTime time = LocalTime.parse("14:30:00");
LocalDateTime dateTime = LocalDateTime.of(date, time);

3.4. Parsing YearMonth as LocalDateTime

The YearMonth class represents only the year and month, without any specific day or time information. As a result, attempting to parse a YearMonth as a LocalDateTime fails since LocalDateTime requires both a complete date and a time.

To address this, we can use the YearMonth class for operations requiring only the year and month. Alternatively, if we need a complete LocalDateTime, we can combine YearMonth with a specific day and time:

YearMonth yearMonth = YearMonth.parse("2024-03", DateTimeFormatter.ofPattern("yyyy-MM"));
LocalDate date = yearMonth.atDay(1);
LocalTime time = LocalTime.of(14, 30);
LocalDateTime dateTime = LocalDateTime.of(date, time);

3.5. Parsing MonthDay as LocalDateTime

The MonthDay class represents only a month and day (e.g., “03-25“) and doesn’t include a year or time component. Parsing MonthDay as a LocalDateTime fails because LocalDateTime requires both a complete date and a time.

To fix this, we can use MonthDay if only the month and day are required. Alternatively, if we need a LocalDateTime, we combine MonthDay with a specific year and time:

MonthDay monthDay = MonthDay.parse("03-25", DateTimeFormatter.ofPattern("MM-dd"));
LocalDate date = LocalDate.of(2024, monthDay.getMonth(), monthDay.getDayOfMonth());
LocalTime time = LocalTime.of(14, 30);
LocalDateTime dateTime = LocalDateTime.of(date, time);

4. Conclusion

The DateTimeParseException error “Unable to obtain LocalDateTime from TemporalAccessor” typically occurs due to missing or incorrectly formatted date-time information, or improper handling of time zones.

To avoid this error, we should ensure that the input format matches the expected pattern and use the appropriate Java date-time class (LocalDate, LocalDateTime, ZonedDateTime, or OffsetDateTime).

By following these best practices, date-time values can be parsed and managed efficiently without errors.

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)