读书人

多对1单向关联

发布时间: 2012-08-22 09:50:35 作者: rapoo

多对一单向关联

组和人员: 一个组有多个人员,一个人员属于一个组

在用户表里面有组的外键

Annota配置方式:

?

?

?

?

package com.zchen.hibernate;import org.hibernate.cfg.AnnotationConfiguration;import org.hibernate.tool.hbm2ddl.SchemaExport;import org.junit.Test;public class Snippet {@Testpublic void testSchemaExport(){new SchemaExport(new AnnotationConfiguration().configure()).create(true, true);}}

?

读书人网 >软件架构设计

热点推荐