读书人

一对多单向联系关系

发布时间: 2012-09-14 11:53:44 作者: rapoo

一对多单向关联

组和用户

一个组有多个用户,一个用户只能属于一个组:

表结构:在用户表中有组的外键

?

Annotation生成方式:

?

?

?

?

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);}}

?

读书人网 >软件架构设计

热点推荐