18 lines
No EOL
1 KiB
XML
18 lines
No EOL
1 KiB
XML
<!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="hibernate.connection.driver_class">org.postgresql.Driver</property>
|
|
<!-- <property name="hibernate.connection.url">jdbc:postgresql://192.168.18.2:5432/testdb?ssl=true&sslmode=verify-ca</property> -->
|
|
<property name="hibernate.connection.url">jdbc:postgresql://192.168.18.2:5432/hdcloudb</property>
|
|
<property name="hibernate.connection.username">rafayahmad</property>
|
|
<property name="hibernate.connection.password">psql7548</property>
|
|
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
|
|
<property name="show_sql">true</property>
|
|
<property name="format_sql">true</property>
|
|
<property name="hbm2ddl.auto">update</property>
|
|
|
|
<mapping class="com.practice.Student"/>
|
|
</session-factory>
|
|
</hibernate-configuration> |