refined EntityManagerFactory proxy exception (SPR-4383)
This commit is contained in:
parent
9765fefeac
commit
695f1613b2
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2010 the original author or authors.
|
* Copyright 2002-2011 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -341,9 +341,23 @@ public abstract class AbstractEntityManagerFactoryBean implements
|
||||||
this.plusOperations = getJpaDialect().getEntityManagerFactoryPlusOperations(emf);
|
this.plusOperations = getJpaDialect().getEntityManagerFactoryPlusOperations(emf);
|
||||||
ifcs.add(EntityManagerFactoryPlusOperations.class);
|
ifcs.add(EntityManagerFactoryPlusOperations.class);
|
||||||
}
|
}
|
||||||
return (EntityManagerFactory) Proxy.newProxyInstance(
|
try {
|
||||||
this.beanClassLoader, ifcs.toArray(new Class[ifcs.size()]),
|
return (EntityManagerFactory) Proxy.newProxyInstance(
|
||||||
new ManagedEntityManagerFactoryInvocationHandler(this));
|
this.beanClassLoader, ifcs.toArray(new Class[ifcs.size()]),
|
||||||
|
new ManagedEntityManagerFactoryInvocationHandler(this));
|
||||||
|
}
|
||||||
|
catch (IllegalArgumentException ex) {
|
||||||
|
if (this.entityManagerFactoryInterface != null) {
|
||||||
|
throw new IllegalStateException("EntityManagerFactory interface [" + this.entityManagerFactoryInterface +
|
||||||
|
"] seems to conflict with Spring's EntityManagerFactoryInfo mixin - consider resetting the "+
|
||||||
|
"'entityManagerFactoryInterface' property to plain [javax.persistence.EntityManagerFactory]", ex);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
throw new IllegalStateException("Conflicting EntityManagerFactory interfaces - " +
|
||||||
|
"consider specifying the 'jpaVendorAdapter' or 'entityManagerFactoryInterface' property " +
|
||||||
|
"to select a specific EntityManagerFactory interface to proceed with", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue