@TargetSE(valueSE=TYPESE) @RetentionSE(valueSE=RUNTIMESE) public @interface IdClass
主キークラスのフィールドまたはプロパティの名前とエンティティの主キーフィールドまたはプロパティは対応している必要があり、それらの型は同じである必要があります。
Example:
@IdClass(com.acme.EmployeePK.class)
@Entity
public class Employee {
@Id String empName;
@Id Date birthDay;
...
}
public abstract ClassSE value
Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.