Система вложенных тегов (ECI), связь с базой данных

This commit is contained in:
RoyceDa
2026-02-02 05:13:32 +02:00
parent d1be8e7014
commit 14a8615746
24 changed files with 326 additions and 59 deletions

View File

@@ -3,10 +3,10 @@
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/rosetta_db</property>
<property name="hibernate.connection.username">rosetta_user</property>
<property name="hibernate.connection.password">rosetta_password</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</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>