欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hibernate创建表

程序员文章站 2022-03-02 17:24:10
...
hibernate自动注解创建表
1、编写实体类,
2、编写配置文件hibernate.cfg.xml:
    其中注意的地方有:<property name="hibernate.hbm2ddl.auto">create</property>
不要写成update
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
不要写成MySQLInnoDBDialect
3、编写测试类,
相关标签: hibernate MySQL