接口 DomainDataRegionConfig
-
- 所有已知实现类:
DomainDataRegionConfigImpl
public interface DomainDataRegionConfigConfiguration for a named region for caching domain data. A region's name is "unqualified"; i.e. it is not prefixed bySessionFactoryOptions.getCacheRegionPrefix().- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 List<CollectionDataCachingConfig>getCollectionCaching()Retrieve the list of all collection data to be stored in this regionList<EntityDataCachingConfig>getEntityCaching()Retrieve the list of all entity data to be stored in this regionList<NaturalIdDataCachingConfig>getNaturalIdCaching()Retrieve the list of all natural-id data to be stored in this regionStringgetRegionName()Retrieve the unqualified name of this region.
-
-
-
方法详细资料
-
getRegionName
String getRegionName()
Retrieve the unqualified name of this region.
-
getEntityCaching
List<EntityDataCachingConfig> getEntityCaching()
Retrieve the list of all entity data to be stored in this region
-
getNaturalIdCaching
List<NaturalIdDataCachingConfig> getNaturalIdCaching()
Retrieve the list of all natural-id data to be stored in this region
-
getCollectionCaching
List<CollectionDataCachingConfig> getCollectionCaching()
Retrieve the list of all collection data to be stored in this region
-
-