PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Łączenie PostgreSQL 9.2.1 z Hibernate

To jest plik hibernate.cfg.xml dla posgresql, który pomoże Ci w podstawowych konfiguracjach hibernacji dla posgresql.

<!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.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.connection.password">password</property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/hibernatedb</property>



        <property name="connection_pool_size">1</property>

        <property name="hbm2ddl.auto">create</property>

        <property name="show_sql">true</property>



       <mapping class="org.javabrains.sanjaya.dto.UserDetails"/>

    </session-factory>
</hibernate-configuration>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. hibernacja z c3p0:funkcja createClob() nie jest jeszcze zaimplementowana

  2. Jak wyświetlić kod CREATE VIEW dla widoku w PostgreSQL?

  3. Jak mieć pełną funkcjonalność offline w aplikacji internetowej z bazą danych PostgreSQL?

  4. Zapytanie z LEFT JOIN nie zwraca wierszy dla liczby 0

  5. PostgreSql WSTAW Z WYBRANEGO ID POWRACAJĄCEGO