<?xml version="1.0" encoding="GBK"?> <!-- 指定Hibernate配置文件的DTD信息 --> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <!-- hibernate- configuration是连接配置文件的根元素 --> <hibernate-configuration> <session-factory> ...... <!-- 根据需要自动创建数据库:如果创建表,这里必须为create --> <property name="hbm2ddl.auto">create</property> <!-- 显示Hibernate持久化操作所生成的 SQL --> <property name="show_sql">true</property> <!-- 将SQL脚本进行格式化后再输出 --> <property name="hibernate.format_sql">true</property> <!-- 罗列所有的映射文件 --> <mapping resource="....../lovejk.hbm.xml"/> </session-factory> lt;/hibernate-configuration> |