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编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |