Package jakarta.persistence
Annotation Type Cacheable
-
@Target(TYPE) @Retention(RUNTIME) public @interface Cacheable
Specifies whether an entity should be cached if caching is enabled when the value of thepersistence.xml
caching element isENABLE_SELECTIVE
orDISABLE_SELECTIVE
. The value of theCacheable
annotation is inherited by subclasses; it can be overridden by specifyingCacheable
on a subclass.Cacheable(false)
means that the entity and its state must not be cached by the provider.- Since:
- 2.0
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
value
(Optional) Whether or not the entity should be cached.
-