LocalContainerEntityManagerFactoryBean etc
This commit is contained in:
parent
62e5b9da04
commit
905d17d444
|
@ -3,7 +3,7 @@ SPRING FRAMEWORK CHANGELOG
|
||||||
http://www.springsource.org
|
http://www.springsource.org
|
||||||
|
|
||||||
|
|
||||||
Changes in version 3.1.1 (2012-02-06)
|
Changes in version 3.1.1 (2012-02-13)
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
* official support for Hibernate 4.0 GA (as released in the meantime)
|
* official support for Hibernate 4.0 GA (as released in the meantime)
|
||||||
|
@ -13,6 +13,8 @@ Changes in version 3.1.1 (2012-02-06)
|
||||||
* CacheNamespaceHandler actually parses cache:annotation-driven's "key-generator" attribute
|
* CacheNamespaceHandler actually parses cache:annotation-driven's "key-generator" attribute
|
||||||
* officially deprecated TopLinkJpaDialect in favor of EclipseLink and Spring's EclipseLinkJpaDialect
|
* officially deprecated TopLinkJpaDialect in favor of EclipseLink and Spring's EclipseLinkJpaDialect
|
||||||
* fixed LocalContainerEntityManagerFactoryBean's "packagesToScan" to avoid additional provider scan
|
* fixed LocalContainerEntityManagerFactoryBean's "packagesToScan" to avoid additional provider scan
|
||||||
|
* LocalContainerEntityManagerFactoryBean's "persistenceUnitName" applies to "packagesToScan" as well
|
||||||
|
* DefaultPersistenceUnitManager uses containing jar as persistence unit root URL for default unit
|
||||||
* added protected "isPersistenceUnitOverrideAllowed()" method to DefaultPersistenceUnitManager
|
* added protected "isPersistenceUnitOverrideAllowed()" method to DefaultPersistenceUnitManager
|
||||||
* Hibernate synchronization properly unbinds Session even in case of afterCompletion exception
|
* Hibernate synchronization properly unbinds Session even in case of afterCompletion exception
|
||||||
* Hibernate exception translation covers NonUniqueObjectException to DuplicateKeyException case
|
* Hibernate exception translation covers NonUniqueObjectException to DuplicateKeyException case
|
||||||
|
@ -20,21 +22,23 @@ Changes in version 3.1.1 (2012-02-06)
|
||||||
* Hibernate 4 LocalSessionFactoryBean does not insist on a "dataSource" reference being set
|
* Hibernate 4 LocalSessionFactoryBean does not insist on a "dataSource" reference being set
|
||||||
* added "entityInterceptor" property to Hibernate 4 LocalSessionFactoryBean
|
* added "entityInterceptor" property to Hibernate 4 LocalSessionFactoryBean
|
||||||
* added "getConfiguration" accessor to Hibernate 4 LocalSessionFactoryBean
|
* added "getConfiguration" accessor to Hibernate 4 LocalSessionFactoryBean
|
||||||
|
* added "durability" and "description" properties to JobDetailFactoryBean
|
||||||
* corrected fix for QuartzJobBean to work with Quartz 2.0/2.1
|
* corrected fix for QuartzJobBean to work with Quartz 2.0/2.1
|
||||||
* JMS CachingConnectionFactory never caches consumers for temporary queues and topics
|
* JMS CachingConnectionFactory never caches consumers for temporary queues and topics
|
||||||
* JMS SimpleMessageListenerContainer silently falls back to lazy registration of consumers
|
* JMS SimpleMessageListenerContainer silently falls back to lazy registration of consumers
|
||||||
* fix regresion in UriUtils
|
* Servlet/PortletContextResource's "isReadable()" implementation returns false for directories
|
||||||
* allow adding flash attributes in methods with a ModelAndView return value
|
|
||||||
* preserve quotes in MediaType parameters
|
* preserve quotes in MediaType parameters
|
||||||
* make flash attributes available in the model of ParameterizableViewController and UrlFilenameViewController
|
* added "normalize()" method to UriComponents
|
||||||
* add property to RedirectView to disable expanding URI variables in redirect URL
|
|
||||||
* fix request mapping bug involving direct vs pattern path matches with HTTP methods
|
|
||||||
* revise the FlashMapManager contract and implemenation to address a flaw in its design
|
|
||||||
* Remove check for HTTP "POST" when resolving multipart request controller method arguments
|
|
||||||
* add normalize() method to UriComponents
|
|
||||||
* remove empty path segments from input to UriComponentsBuilder
|
* remove empty path segments from input to UriComponentsBuilder
|
||||||
* add fromRequestUri(request) and fromCurrentRequestUri() methods to ServletUriCommonentsBuilder
|
* added "fromRequestUri(request)" and "fromCurrentRequestUri()" methods to ServletUriComponentsBuilder
|
||||||
* improve @SessionAttributes handling to provide better support for clustered sessions
|
* allow adding flash attributes in methods with a ModelAndView return value
|
||||||
|
* make flash attributes available in the model of Parameterizable/UrlFilenameViewController
|
||||||
|
* revised the FlashMapManager contract and implementation to address a flaw in its design
|
||||||
|
* improved @SessionAttributes handling to provide better support for clustered sessions
|
||||||
|
* added property to RedirectView to disable expanding URI variables in redirect URL
|
||||||
|
* fixed request mapping bug involving direct vs pattern path matches with HTTP methods
|
||||||
|
* removed check for HTTP "POST" when resolving multipart request controller method arguments
|
||||||
|
|
||||||
|
|
||||||
Changes in version 3.1 GA (2011-12-12)
|
Changes in version 3.1 GA (2011-12-12)
|
||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue