polishing

This commit is contained in:
Juergen Hoeller
2012-02-09 17:59:49 +01:00
parent 57851de88e
commit 1bd260adaf
3 changed files with 31 additions and 23 deletions

View File

@@ -2,15 +2,15 @@
/**
*
* Package providing integration of
* <a href="http://www.hibernate.org">Hibernate3</a>
* <a href="http://www.hibernate.org">Hibernate 3.x</a>
* with Spring concepts.
*
*
* <p>Contains SessionFactory helper classes, a template plus callback
* for Hibernate access, and an implementation of Spring's transaction SPI
* for local Hibernate transactions.
*
*
* <p><b>This package supports Hibernate 3.x only.</b>
* See the org.springframework.orm.hibernate package for Hibernate 2.1 support.
* See the <code>org.springframework.orm.hibernate4</code> package for Hibernate 4.x support.
*
*/
package org.springframework.orm.hibernate3;

View File

@@ -2,15 +2,15 @@
/**
*
* Package providing integration of
* <a href="http://www.hibernate.org">Hibernate 4.0</a>
* <a href="http://www.hibernate.org">Hibernate 4.x</a>
* with Spring concepts.
*
*
* <p>Contains an implementation of Spring's transaction SPI for local Hibernate transactions.
* This package is intentionally rather minimal, relying on native Hibernate builder APIs
* for building a SessionFactory (for example in an @Bean method in a @Configuration class).
* This package is intentionally rather minimal, with no template classes or the like,
* in order to follow native Hibernate recommendations as closely as possible.
*
* <p><b>This package supports Hibernate 4.x only.</b>
* See the org.springframework.orm.hibernate3 package for Hibernate 3.x support.
* See the <code>org.springframework.orm.hibernate3</code> package for Hibernate 3.x support.
*
*/
package org.springframework.orm.hibernate4;