java check if dates are the same day
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
Then we can simply use the method isSameDay from DateUtils:
DateUtils.isSameDay(date1, date2);