Deprecate HibernateJpaSessionFactoryBean (against Hibernate 5.2)
Issue: SPR-16016
This commit is contained in:
parent
03b68286a2
commit
66a6fdacca
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -34,11 +34,35 @@ import org.springframework.util.ReflectionUtils;
|
|||
* <p>Primarily available for resolving a SessionFactory by JPA persistence unit name
|
||||
* via the {@link #setPersistenceUnitName "persistenceUnitName"} bean property.
|
||||
*
|
||||
* <p>Note that, for straightforward cases, you could also simply declare a factory method:
|
||||
*
|
||||
* <pre class="code">
|
||||
* <bean id="sessionFactory" factory-bean="entityManagerFactory" factory-method="getSessionFactory"/>
|
||||
* </pre>
|
||||
*
|
||||
* <p>And as of JPA 2.1, {@link EntityManagerFactory#unwrap} provides a nice approach as well,
|
||||
* in particular within configuration class arrangements:
|
||||
*
|
||||
* <pre class="code">
|
||||
* @Bean
|
||||
* public SessionFactory sessionFactory(@Qualifier("entityManagerFactory") EntityManagerFactory emf) {
|
||||
* return emf.unwrap(SessionFactory.class);
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* Please note: Since Hibernate 5.2 changed its {@code SessionFactory} interface to extend JPA's
|
||||
* {@code EntityManagerFactory}, you may get conflicts when injecting by type, with both the
|
||||
* original factory and your custom {@code SessionFactory} matching {@code EntityManagerFactory}.
|
||||
* An explicit qualifier for the original factory (as indicated above) is recommended here.
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
* @since 3.1
|
||||
* @see #setPersistenceUnitName
|
||||
* @see #setEntityManagerFactory
|
||||
* @deprecated as of Spring Framework 4.3.12 against Hibernate 5.2, in favor of a custom solution
|
||||
* based on {@link EntityManagerFactory#unwrap} with explicit qualifiers and/or primary markers
|
||||
*/
|
||||
@Deprecated
|
||||
public class HibernateJpaSessionFactoryBean extends EntityManagerFactoryAccessor implements FactoryBean<SessionFactory> {
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue