HHH-12549 Remove mentions of JCache in hibernate-ehcache

This commit is contained in:
Yoann Rodière 2018-06-26 09:26:32 +02:00 committed by Guillaume Smet
parent e7145cfe72
commit 432adb36d8
2 changed files with 2 additions and 2 deletions

View File

@ -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";

View File

@ -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 + "]" );
}