Archive for July 31st, 2008

A simple java.util.Date to java.sql.Date converter

Thursday, July 31st, 2008

If you're using JSF and need a converter for converting UI elements (typically java.util.Date) to your domain object's date field (typically java.sql.Date), here's the code snippet, [java] public class DateConverter implements Converter, Serializable { public Object getAsObject(FacesContext context, UIComponent component, String value) { java.sql.Date sqlDate = null; ...