In this tutorial you will learn about Spring CustomEditorConfigurer.
In this tutorial you will learn about Spring CustomEditorConfigurer.Passing a date format in the bean property is not allowed and in order to do so you need to register the CustomDateEditor in CustomEditorConfigurer first so that it will convert the bean properties which type is java.util.Date
Employee.java
package spring.date.property; import java.util.Date; public class Employee { private Date joiningDate; private String name; public Date getJoiningDate() { return joiningDate; } public void setJoiningDate(Date joiningDate) { this.joiningDate = joiningDate; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
AppMain.java
package spring.date.property; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class AppMain { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext( new String[] { "context.xml" }); Employee emp = (Employee) context.getBean("bean1"); System.out.println(emp.getJoiningDate()); } }
context.xml
<beans xmlns="http://www.springframework.org/schema/beans"
|
Sat Jan 30 00:00:00 GMT+05:30 2010 |