2013-05-15 1 views

risposta

101

Questo è un hibernate.cfg.xml per posgresql e ti aiuterà con le configurazioni base di ibernazione per 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> 
+0

Questo è grande, ma dove posso collocare questo file? In WEB-INF? –

+1

@HrishikeshChoudhari dovrebbe essere da qualche parte nel tuo percorso di costruzione. Penso che WEB-INF andrà bene. Non ho molta comprensione dei progetti web, ma sento che WEB-INF è nel percorso di costruzione. –

+9

org.hibernate.dialect.PostgreSQLDialect è obsoleto. si dovrebbe usare org.hibernate.dialect.PostgreSQL82Dialect invece – long

5

Se il progetto è Maven messi in src/main/resources, nella fase pacchetto sarà copiarlo in ../WEB-INF/classes/hibernate.cfg.xml

1

Questo è il file hibernate.cfg.xml per collegare PostgreSQL 9.5 e questo è di aiuto a configurazione di base.

<?xml version='1.0' encoding='utf-8'?> 

<!-- 
    ~ Hibernate, Relational Persistence for Idiomatic Java 
    ~ 
    ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later. 
    ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. 
    --> 
<!DOCTYPE hibernate-configuration SYSTEM 
     "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:5433/hibernatedb</property> 
     <property name="connection.username">postgres</property> 
     <property name="connection.password">password</property> 

     <!-- JDBC connection pool (use the built-in) --> 
     <property name="connection.pool_size">1</property> 

     <!-- SQL dialect --> 
     <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property> 

     <!-- Enable Hibernate's automatic session context management --> 
     <property name="current_session_context_class">thread</property> 

     <!-- Disable the second-level cache --> 
     <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property> 

     <!-- Echo all executed SQL to stdout --> 
     <property name="show_sql">true</property> 

     <!-- Drop and re-create the database schema on startup --> 
     <property name="hbm2ddl.auto">create</property> 
     <mapping class="com.waseem.UserDetails"/> 
    </session-factory> 
</hibernate-configuration> 

Assicurarsi Posizione file dovrebbe essere sotto src/main/risorse/hibernate.cfg.xml

0

Sì utilizzando la primavera-boot con i file di configurazione Hibernate possiamo persistere i dati al database. continua a ibernare .cfg.xml nella cartella src/main/resources per leggere le configurazioni relative al database.

enter image description here

+1

Per favore ** [modifica] ** il tuo post e mostra il codice/XML effettivo come testo anziché come screenshot. Gli altri non possono copiare e incollare dalle tue immagini. [Vedi qui] (https://meta.stackoverflow.com/a/285557/1402846) per i dettagli. Grazie. – Pang