↗ JetBrains 20% discount
Buy any product from JetBrains and get a 20% discount.
Spring MVC
@InitBinder("user") public void customizeBinding (WebDataBinder binder) { SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd"); dateFormatter.setLenient(false); binder.registerCustomEditor(Date.class, "dateOfBirth", new CustomDateEditor(dateFormatter, true)); }