java.time.LocalDateTime class, introduced in Java 8, represents a local date time object without timezone information. It represents time to nanosecond precision e.g. 2007-12-03T10:15:30:55.123456789 We can use the LocalDateTime instances where we need to represent the time without any need of the timezone reference. For example, we can use LocalDateTime to trigger the batch jobs in […]
The post Java LocalDateTime class appeared first on HowToDoInJava.