-
@Inherited @Documented @Target(TYPE) @Retention(RUNTIME) public @interface Entity
Specifies that the class is an entity. This annotation is applied to the entity class.- 从以下版本开始:
- Java Persistence 1.0
-
-
可选元素概要
可选元素 修饰符和类型 可选元素 说明 boolean
cacheable
(Optional) 是否缓存实体对象boolean
cacheDirect
(Optional) DataSource是否直接返回对象的真实引用, 而不是copy一份int
cacheInterval
(Optional) 定时自动更新缓存的周期秒数,为0表示不做定时更新, 大于0表示每经过interval秒后会自动从数据库中拉取数据更新Cacheboolean
camelCase
(Optional) 表名和字段名是否将驼峰式改成下划线式String
comment
(Optional) The comment of the entity.
-
-
-
-
comment
String comment
(Optional) The comment of the entity.- 返回:
- String
- 默认值:
- ""
-
-