Which is the most up-to-date way to instantiate the current date?
new Date(System.currentTimeMillis())
new SimpleDateFormat("yyyy-MM-dd").format(new Date())
Calendar.getInstance().getTime()
LocalDate.now()