-
Notifications
You must be signed in to change notification settings - Fork 1
/
hibernate.cfg.xml
20 lines (18 loc) · 970 Bytes
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.driver_class"/>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="connection.url">jdbc:postgresql://192.168.166.166:5432/postgres</property>
<property name="connection.username">postgres</property>
<property name="connection.password">postgres</property>
<property name="connection.pool_size">1</property>
<property name="show_sql">true</property>
<!--<property name="hibernate.hbm2ddl.auto">update</property>-->
<mapping class="data.model.Users"/>
<mapping class="data.model.Messages"/>
</session-factory>
</hibernate-configuration>