首页 > Web开发 > 详细

Hibernate 配置hibernate.cfg.xml

时间:2019-03-16 21:28:03      阅读:158      评论:0      收藏:0      [点我收藏+]
<?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>
    <!-- 配置数据库连接 connection -->
    <session-factory>
        <!-- 数据库驱动 -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <!-- 数据库地址 localhost可以写作 jdbc:mysql:/// -->
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/database_name</property>
        <!-- 数据库用户名 -->
        <property name="hibernate.connection.username">username</property>
        <!-- 数据库用户的密码 -->
        <property name="hibernate.connection.password">password</property>
        
        <!-- 数据库方言 MySQL -->
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        
        <!-- 连接池 C3P0 -->
        <property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
        
        <!-- 格式化输出生成的SQL语句 -->
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.format_sql">true</property>
        
        <!-- 加载映射文件 -->
        <mapping resource="package.name.ClassName.hbm.xml" />
    </session-factory>
</hibernate-configuration>

 

 

Hibernate 配置hibernate.cfg.xml

原文:https://www.cnblogs.com/engreal/p/10544365.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!