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

Hibernate的配置

程序员文章站 2022-03-19 18:34:20
...
这次给大家带来Hibernate的配置,Hibernate配置的注意事项有哪些,下面就是实战案例,一起来看一下。

数据库:Mysql

配置文件名 Hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration><!-- SessionFactory -->
    <session-factory>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/database</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.connection.username">username</property>
        <property name="hibernate.connection.password">password</property>
        <property name="show_sql">true</property>
        <property name="hbm2ddl.auto">update</property>
        <mapping resource="com/troyforever/mvc/bean/Example.hbm.xml" />
    </session-factory></hibernate-configuration>

相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!

相关阅读:

web.xml的配置

Spring的MVC配置

Hibernate的映射文件详解

Spring的配置

以上就是Hibernate的配置的详细内容,更多请关注其它相关文章!

相关标签: Hibernate 配置