-
Notifications
You must be signed in to change notification settings - Fork 0
/
hibernate.cfg.xml
28 lines (21 loc) · 1.11 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
<?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>
<!-- Database connection settings -->
<property name="connection.driver_class">org.postgresql.Driver</property>
<property name="connection.url">jdbc:postgresql://localhost:5432/hello-world</property>
<property name="connection.username">postgres</property>
<property name="connection.password">pgAdmin</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Use XML-based mapping metadata -->
<mapping resource="Message.hbm.xml"/>
<!-- Use Annotation-based mapping metadata -->
<!-- <mapping class="com.dci.hibernate.entity.Message"/> -->
</session-factory>
</hibernate-configuration>