updated to final versions of JSR-330 and JSR-303 APIs

This commit is contained in:
Juergen Hoeller
2009-10-15 14:31:41 +00:00
parent b42cf25599
commit e99cda3739
11 changed files with 213 additions and 208 deletions

View File

@@ -3,11 +3,24 @@ SPRING FRAMEWORK CHANGELOG
http://www.springsource.org
Changes in version 3.0.0.RC2 (2009-##-##)
Changes in version 3.0.0.RC2 (2009-10-30)
-----------------------------------------
* DataBinder now accepts var-args to set allowed, disallowed, and required fields
* updated to final versions of JSR-330 "javax.inject" and JSR-303 "javax.validation" APIs
* full compliance with the JSR-330 TCK (i.e. full compliance with the final specification)
* support for Hibernate Validator 4.0 GA (as the JSR-303 reference implementation)
* revised MethodParameter's annotation accessor methods
* PathMatchingResourcePatternResolver leniently ignores non-existing root directories
* DefaultConversionService understands "on"/"off", "yes"/"no", "1"/"0" as boolean values
* CustomEditorConfigurer supports PropertyEditor instances again (with deprecation warning)
* ClassUtils is now parametrized with Class<?> and Class<T> where appropriate
* DataBinder now accepts var-args to set allowed, disallowed, and required fields
* DataBinder auto-grows nested paths on traversal (avoiding NullValueInNestedPathException)
* fixed enum binding regression with WebRequestDataBinder (as used by @MVC data binding now)
* fixed FieldError to expose rejected input value as String value instead of as array
* ContentNegotiatingViewResolver works with ignoreAcceptHeader and defaultContentType as well
* re-introduced Struts 1.x support ("org.springframework.web.struts") in deprecated form
* deprecated scheduling support for JDK 1.3 Timer ("org.springframework.scheduling.timer")
Changes in version 3.0.0.RC1 (2009-09-25)