-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhibernate.cfg.xml
23 lines (20 loc) · 950 Bytes
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">
com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">
jdbc:mysql://localhost:3306/fxchart</property>
<property name="hibernate.connection.username">fxchart</property>
<property name="hibernate.connection.password">P@ssw0rd</property>
<property name="hibernate.connection.pool_size">3</property>
<property name="hibernate.dialect">
org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.show_sql">false</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<!-- Mapping files -->
<mapping resource="blancpanda/fx/CandleStick.hbm.xml"/>
</session-factory>
</hibernate-configuration>