hibernate_collection/bin/hibernate.cfg.xml

来源:互联网 发布:抽象主义 知乎 编辑:程序博客网 时间:2024/06/04 20:12
  <?xml version="1.0" encoding="UTF-8" ?>
  <!DOCTYPE hibernate-configuration (View Source for full doctype...)>
- <hibernate-configuration>
- <session-factory>
  <property name="connection.url">jdbc:mysql://127.0.0.1:3306/test</property>
  <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="connection.username">root</property>
  <property name="connection.password" />
  <property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
  <property name="show_sql">true</property>
  <property name="hbm2ddl.auto">create</property>
  <mapping resource="entity2/QQ.xml" />
  <mapping resource="entity2/QQManager.xml" />
  </session-factory>
  </hibernate-configuration>
原创粉丝点击