一对多单向关联
组和用户
一个组有多个用户,一个用户只能属于一个组:
表结构:在用户表中有组的外键
?
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);}}?