Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.15 KB | None | 0 0
  1. <!DOCTYPE hibernate-configuration PUBLIC
  2.         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3.         "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4.  
  5. <hibernate-configuration>
  6.     <session-factory>
  7.  
  8.         <property name="connection.url">jdbc:postgresql://localhost:5432/musicflow</property> <!-- BD Mane -->
  9.         <property name="connection.driver_class">org.postgresql.Driver</property> <!-- DB Driver -->
  10.         <property name="connection.username">postgres</property> <!-- DB User -->
  11.         <property name="connection.password">lookatme</property> <!-- DB Password -->
  12.  
  13.         <property name="dialect">org.hibernate.dialect.PostgreSQL95Dialect</property> <!-- DB Dialect -->
  14.         <property name="hbm2ddl.auto">update</property> <!-- create / create-drop / update -->
  15.  
  16.         <property name="show_sql">true</property> <!-- Show SQL in console -->
  17.         <property name="format_sql">true</property> <!-- Show SQL formatted -->
  18.  
  19.         <mapping class="music.documents.musicflow.entities.Label"/>
  20.         <mapping class="music.documents.musicflow.entities.Artist"/>
  21.  
  22.     </session-factory>
  23. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement