今回は Hibernate の設定について説明します。 Hibernate 設定の 注意事項 は何ですか? 実際のケースを見てみましょう。
データベース: Mysql
設定ファイルname 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>
この記事の事例を読んだ後は、この方法を習得したと思います。さらにエキサイティングな内容については、php 中国語 Web サイトに注目してください。その他関連記事!
関連書籍:
以上が休止状態の構成の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。