快速业务通道

hibernate annoation (二 创建表) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-25

hibernate annoation (二 创建表)

时间:2009-10-10 javaeye ericjoe

为了追踪hibernate的信息 <property name="hibernate.show_sql">true</property>

新建User类:

@Entity @Table(name="E_USER",uniqueConstraints={ @UniqueConstraint(columnNames={"yahoo"}) }) public class User { private int id; private String yahoo; //昵称唯一  @Id  @GeneratedValue(strategy=GenerationType.AUTO) public int getId() { return id; } public void setId(int id) { this.id = id; } public String getYahoo() { return yahoo; } public void setYahoo(String yahoo) { this.yahoo = yahoo; } }

创建表 首先在hibernate.cfg.xml里配置<mapping class="com.eric.po.User"/>说明:使用annoation同样可以接受.hbm.xml文件

1,以手动创建

  DROP TABLE IF EXISTS `e_user`; CREATE TABLE `e_user` (  `id` int(11) NOT NULL auto_increment,  `yahoo` varchar(255) default NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `yahoo` (`yahoo`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

2,使用<property name="hbm2ddl.auto">create</property>属性来自动创建

3,SchemaExport : new SchemaExport(new AnnotationConfiguration().configure()).create(true,true);

create(true,true):两个参数:

Java代码

* @param script print the DDL to the console  * @param export export the script to the database

hibernate建表语句:

 drop table if exists E_USER  create table E_USER (id integer not null auto_increment, yahoo varchar(255), primary key (id), unique (yahoo))

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号