当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:16:00  来源:本站整理

hibernate annoation (二 成立表)[Java编程]

赞助商链接



  本文“hibernate annoation (二 成立表)[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

为了追踪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))


  以上是“hibernate annoation (二 成立表)[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 在Hibernate里面动态切换SChema实现访谒差别的数据库的几种办法
  • Hibernate 3新增XML关系长期性介绍
  • Hibernate配置文件在单元测试中的操纵
  • 在Hibernate中动态切换Schema
  • hibernate annoation (八 关联映射)
  • hibernate annoation (九 cascading)
  • <b>hibernate annoation (十 映射查询)</b>
  • hibernate annoation(十一 缓存Ehcache 采纳annoation)
  • Hibernate:操作配置文件生成数据库
  • hibernate annoation (一 加载)
  • hibernate annoation (二 成立表)
  • <b>hibernate annoation (三 id生成器)</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .