-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhibernate.cfg.xml
28 lines (21 loc) · 1.03 KB
/
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
24
25
26
27
28
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQL9Dialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<!-- database -->
<property name="hibernate.connection.url">jdbc:postgresql://vcm-12835.vm.duke.edu:5432/risk</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">postgres</property>
<property name="hibernate.show_sql">
true
</property>
<!-- mapping resource -->
<mapping resource="Player/player.xml" />
<mapping resource="Team/team.xml" />
<mapping resource="Color/color.xml" />
<mapping resource="State/state.xml" />
</session-factory>
</hibernate-configuration>