From 1e48c789da36f941d2001aef57c2a71437941a0f Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sun, 25 Nov 2012 23:04:00 -0800 Subject: [PATCH] Update whats new in Spring 3.2 Issue: SPR-10015 --- src/reference/docbook/new-in-3.2.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/reference/docbook/new-in-3.2.xml b/src/reference/docbook/new-in-3.2.xml index c2968b065e..c24fd5c0cc 100644 --- a/src/reference/docbook/new-in-3.2.xml +++ b/src/reference/docbook/new-in-3.2.xml @@ -207,5 +207,22 @@ +
+ Support for <interfacename>@DateTimeFormat</interfacename> without Joda Time + The @DateTimeFormat annotation can now be + used without needing a dependency on the Joda Time library. If Joda Time is not + present the JDK SimpleDateFormat will be used to parse and + print date patterns. When Joda time is present it will continue to be used in + preference to SimpleDateFormat. + +
+ +
+ Global date & time formatting + It is now possible to define global formats that will be used when parsing + and printing date and time types. See + for details. + +