IdClass (Java EE 5 SDK)

Java

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


javax.persistence Annotation Type IdClass


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface IdClass

Specifies a composite primary key class that is mapped to multiple fields or properties of the entity.

The names of the fields or properties in the primary key class and the primary key fields or properties of the entity must correspond and their types must be the same.


   Example:

   @IdClass(com.acme.EmployeePK.class)
   @Entity
   public class Employee {
     @Id String empName;
     @Id Date birthDay;
     ...
   }
 

从以下版本开始:
Java Persistence 1.0

Required Element Summary
 Class value
          Primary key class
 

元素详细信息

value

public abstract Class value
Primary key class


Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


提交错误或意见

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.