18 lines
985 B
XML
18 lines
985 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.5//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.5.dtd">
|
|
<hibernate-configuration>
|
|
<session-factory>
|
|
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
|
|
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/your_database</property>
|
|
<property name="hibernate.connection.username">your_user</property>
|
|
<property name="hibernate.connection.password">your_password</property>
|
|
|
|
<property name="hibernate.hbm2ddl.auto">update</property>
|
|
<property name="hibernate.show_sql">true</property>
|
|
<property name="hibernate.format_sql">true</property>
|
|
<!--Зарегистрированные таблицы-->
|
|
<mapping class="com.rosetta.im.database.entity.User"/>
|
|
|
|
</session-factory>
|
|
</hibernate-configuration>
|