hibernate创建表
程序员文章站
2022-03-02 17:25:40
...
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、编写测试类,
1、编写实体类,
2、编写配置文件hibernate.cfg.xml:
其中注意的地方有:<property name="hibernate.hbm2ddl.auto">create</property>
不要写成update
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
不要写成MySQLInnoDBDialect
3、编写测试类,
上一篇: 程序部署
下一篇: juquery去除字符串前后的空格