Advertisement
Guest User

Untitled

a guest
May 18th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//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.         <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
  8.         <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
  9.         <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/ramen</property>
  10.         <property name="hibernate.connection.username">postgres</property>
  11.         <property name="hibernate.connection.password">postgres</property>
  12.         <property name="show_sql">false</property>
  13.         <mapping class="main.model.Ramen"/>
  14.     </session-factory>
  15. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement