一:直接看程序
{CSDN:CODE:599457}
二:源码分析
(1)在Teacher中将作为联合主键的属性都加上@id注解
@Id
private int id;
@Id
private String name;
(2)在Teacher类,加上注解@IdClass(value = TeacherPK.class)置顶联合主键类
(3)Teache...
分类:
Web程序 时间:
2015-02-06 18:52:23
阅读次数:
116
Hibernate Annotations
Mapping composite primary keys and foreign keys to composite primary keys:
http://docs.jboss.org/hibernate/annotations/3.5/reference/en/html_single/#d0e2177
引用Composit...
分类:
Web程序 时间:
2014-12-17 16:35:02
阅读次数:
311