-
Notifications
You must be signed in to change notification settings - Fork 0
/
hibernate.cfg.xml
18 lines (14 loc) · 1 KB
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>
<session-factory>
<property name="connection.driver_class">com.mysql.cj.jdbc.Driver</property> <!-- Driver JDBC-->
<property name="connection.url">jdbc:mysql://localhost:3306/ccm</property> <!-- Conector jdbc mysql, url, nombre de la bd -->
<property name="connection.username">root</property> <!-- Usuario bd-->
<property name="connection.password"> </property> <!-- Contraseña bd-->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property> <!-- Dialecto MYSQL -->
<property name="hibernate.transaction.coordinator_class">jdbc</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.show_sql">true</property>
</session-factory>
</hibernate-configuration>