hibernate-local.cfg.xml 1.3 KB

123456789101112131415
  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. <hibernate-configuration>
  5. <session-factory>
  6. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  7. <property name="hibernate.connection.url">jdbc:mysql://${db-host}:3306/hello_world?jdbcCompliantTruncation=false&amp;elideSetAutoCommits=true&amp;useLocalSessionState=true&amp;cachePrepStmts=true&amp;cacheCallableStmts=true&amp;alwaysSendSetIsolation=false&amp;prepStmtCacheSize=4096&amp;cacheServerConfiguration=true&amp;prepStmtCacheSqlLimit=2048&amp;zeroDateTimeBehavior=convertToNull&amp;traceProtocol=false&amp;useUnbufferedInput=false&amp;useReadAheadInput=false&amp;maintainTimeStats=false&amp;useServerPrepStmts&amp;cacheRSMetadata=true</property>
  8. <property name="hibernate.connection.username">benchmarkdbuser</property>
  9. <property name="hibernate.connection.password">benchmarkdbpass</property>
  10. <property name="hibernate.c3p0.min_size">32</property>
  11. <property name="hibernate.c3p0.max_size">256</property>
  12. <property name="hibernate.c3p0.timeout">1800</property>
  13. <property name="hibernate.c3p0.max_statements">50</property>
  14. </session-factory>
  15. </hibernate-configuration>