Advertisement
Javi

configuración hibernate

Jan 28th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.75 KB | None | 0 0
  1.  
  2. <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  3.   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.   xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
  5.    http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
  6.   version="1.0">
  7.  
  8.     <persistence-unit name="data">
  9.         <properties>
  10.             <property name="hibernate.archive.autodetection" value="class, hbm"/>
  11.  
  12.             <property name="hibernate.connection.driver_class" value="***********" />
  13.             <property name="hibernate.connection.url" value="********"/>
  14.             <property name="hibernate.connection.username" value="***"/>
  15.             <property name="hibernate.connection.password" value="***" />
  16.          
  17.        
  18.         <!-- JDBC connection pool (use the built-in) -->
  19.             <property name="hibernate.connection.pool_size" value="1"/>
  20.  
  21.         <!-- SQL dialect -->
  22.             <property name="hibernate.dialect" value="org.hibernate.dialect.DerbyDialect"/>
  23.  
  24.         <!-- Enable Hibernate's automatic session context management -->
  25.             <property name="hibernate.current_session_context_class" value="thread"/>
  26.  
  27.         <!-- Disable the second-level cache  -->
  28.             <property name="hibernate.cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/>
  29.  
  30.         <!-- Echo all executed SQL to stdout -->
  31.             <property name="hibernate.show_sql" value="true"/>
  32.             <property name="hibernate.format_sql" value="false"/>
  33.             <property name="hibernate.use_sql_comments" value="true"/>
  34.  
  35.  
  36.         <!-- Drop and re-create the database schema on startup -->
  37.             <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
  38.  
  39.         </properties>
  40.     </persistence-unit>
  41.  
  42. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement