|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: REQUIRED | OPTIONAL | 详细信息: ELEMENT |
javax.persistence Annotation Type Table
This annotation specifies the primary table for the annotated
entity. Additional tables may be specified using SecondaryTable
or SecondaryTables
annotation.
If no Table
annotation is specified for an entity
class, the default values apply.
Example: @Entity @Table(name="CUST", schema="RECORDS") public class Customer { ... }
- 从以下版本开始:
- Java Persistence 1.0
Optional Element Summary | |
---|---|
String |
catalog
(Optional) The catalog of the table. |
String |
name
(Optional) The name of the table. |
String |
schema
(Optional) The schema of the table. |
UniqueConstraint[] |
uniqueConstraints
(Optional) Unique constraints that are to be placed on the table. |
name
public abstract String name
- (Optional) The name of the table.
Defaults to the entity name.
- 默认值:
- ""
catalog
public abstract String catalog
- (Optional) The catalog of the table.
Defaults to the default catalog.
- 默认值:
- ""
schema
public abstract String schema
- (Optional) The schema of the table.
Defaults to the default schema for user.
- 默认值:
- ""
uniqueConstraints
public abstract UniqueConstraint[] uniqueConstraints
- (Optional) Unique constraints that are to be placed on
the table. These are only used if table generation is in
effect. These constraints apply in addition to any constraints
specified by the
Column
andJoinColumn
annotations and constraints entailed by primary key mappings.Defaults to no additional constraints.
- 默认值:
- {}
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: REQUIRED | OPTIONAL | 详细信息: ELEMENT |
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.