Hibernate的配置
Posted HRZJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate的配置相关的知识,希望对你有一定的参考价值。
配置Hibernate
1、在项目中引入Hibernate的Jar包
在 WebContent/WEB-INF/lib 目录下 导入jar包
2、在Java Resources 下创建 hibernate.cfg.xml,并填写相应信息
创建:
配置:
修改 hibernate.cfg.xml
<!-- 调试 --> <property name="hibernate.show_sql">true</property> <property name="hibernate.format_sql">true</property> <!-- 自动建表方式 --> <property name="hibernate.hbm2ddl.auto">update</property>
3、创建 Hibernate Console Configuration
4、创建 Hibernate Reverse Engineering File
以上是关于Hibernate的配置的主要内容,如果未能解决你的问题,请参考以下文章
Hibernate通过配置文件构建org.hibernate.Session对象的方式与使用范例源代码