zoukankan      html  css  js  c++  java
  • hibernate的核心配置

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!DOCTYPE hibernate-configuration PUBLIC
     3     "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
     4     "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
     5 <hibernate-configuration>
     6     <session-factory>
     7         <!-- 基础配置-->
     8         <property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
     9         <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/数据库名</property>
    10         <property name="hibernate.connection.username">root</property>
    11         <property name="hibernate.connection.password">123456</property>
    12         
    13         <!--     可选配置 -->
    14         <!--     打印sql语句 -->
    15         <property name="hibernate.show_sql">true</property>
    16         <!--     格式化sql -->
    17         <property name="hibernate.format_sql">true</property>
    18         <!--     自动创建表
    19             1.none        :不使用自动建表
    20             2.create      :若有表,删除重新创建;若没有,创建表
    21             3.create-drop :按create创建表,执行完操作后,删除表
    22             4.update      :若有表,则使用;若无表,则创建(课更新表结构)
    23             5.validate    :若无表,则不创建新表,仅使用以有表
    24              -->
    25         <property name="hibernate.hbm2ddl.auto">create</property>
    26         <!--     设置数据库隔离级别 -->
    27         <property name="hibernate.connection.isolation">4</property>
    28         <!--     配置当前线程绑定的session -->
    29         <property name="hibernate.current_session_context_class">thread</property>
    30         
    31         <!-- 添加映射 -->
    32         <mapping resource="/hibernate/src/cn/edu/ahtcm/yrxc/text/aaa.hbm.xml"/>
    33     </session-factory>
    34 </hibernate-configuration>
  • 相关阅读:
    hdu 5007 水题 (2014西安网赛A题)
    hdu 1698 线段树(成段替换 区间求和)
    poj 3468 线段树 成段增减 区间求和
    hdu 2795 公告板 (单点最值)
    UVaLive 6833 Miscalculation (表达式计算)
    UVaLive 6832 Bit String Reordering (模拟)
    CodeForces 124C Prime Permutation (数论+贪心)
    SPOJ BALNUM (数位DP)
    CodeForces 628D Magic Numbers (数位DP)
    POJ 3252 Round Numbers (数位DP)
  • 原文地址:https://www.cnblogs.com/yrxc/p/13231656.html
Copyright © 2011-2022 走看看