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