Cette fois, je vais vous apporter la configuration d'Hibernate. Quelles sont les précautions pour la configuration d'Hibernate. Ce qui suit est un cas pratique, jetons un coup d'oeil.
Base de données : Mysql
Fichier de configuration nom 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>
Je crois que vous avez lu le cas dans cet article Vous maîtrisez la méthode. Pour un contenu plus passionnant, veuillez faire attention aux autres articles connexes sur le site Web chinois de php !
Lecture connexe :
Explication détaillée des fichiers de mappage Hibernate
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!