Tag

java.util.Date

1 views collected around this technical thread.

Java Architect Essentials
Java Architect Essentials
Jun 9, 2024 · Backend Development

Why java.util.Date Is Deprecated and How to Migrate to the java.time API

The article explains the design flaws of java.util.Date, why it is discouraged in modern Java development, and provides a step‑by‑step guide with code examples for replacing it with java.time classes such as Instant, LocalDateTime, LocalDate, LocalTime, and ZonedDateTime.

BackendJavaMigration
0 likes · 10 min read
Why java.util.Date Is Deprecated and How to Migrate to the java.time API
Architecture Digest
Architecture Digest
Mar 14, 2024 · Backend Development

Why java.util.Date Should Be Replaced and How to Migrate to java.time

The article explains the many design flaws of java.util.Date, why modern Java projects must abandon it, and provides a step‑by‑step guide with code examples for migrating to the immutable java.time API such as Instant, LocalDateTime and ZonedDateTime.

BackendJavaMigration
0 likes · 13 min read
Why java.util.Date Should Be Replaced and How to Migrate to java.time