HHH-12549 Remove mentions of JCache in hibernate-ehcache
This commit is contained in:
parent
e7145cfe72
commit
432adb36d8
|
@ -15,7 +15,7 @@ public interface ConfigSettings {
|
|||
String PROP_PREFIX = "hibernate.cache.ehcache.";
|
||||
|
||||
/**
|
||||
* Allows providing `hibernate-jcache` with a custom JCache {@link CacheManager}.
|
||||
* Allows providing `hibernate-ehcache` with a custom Ehcache {@link CacheManager}.
|
||||
*/
|
||||
String CACHE_MANAGER = PROP_PREFIX + "cache_manager";
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ public class EhcacheRegionFactory extends RegionFactoryTemplate {
|
|||
}
|
||||
|
||||
protected Cache createCache(String regionName) {
|
||||
throw new CacheException( "On-the-fly creation of JCache Cache objects is not supported [" + regionName + "]" );
|
||||
throw new CacheException( "On-the-fly creation of Ehcache Cache objects is not supported [" + regionName + "]" );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue