hibernate.cfg.xml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="show_sql">false</property>
  8. <property name="use_outer_join">true</property>
  9. <property name="jdbc.use_scrollable_resultset">false</property>
  10. <property name="dbcp.defaultAutoCommit">false</property>
  11. <property name="dbcp.maxTotal">50</property>
  12. <property name="dbcp.maxIdle">5</property>
  13. <property name="dbcp.maxWaitMillis">30000</property>
  14. <property name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
  15. <property name="connection.url">DB_HOST</property>
  16. <property name="connection.username">DB_USER</property>
  17. <property name="connection.password">DB_PASSWORD</property>
  18. <property name="connection.driver_class">DB_DRIVER_CLASS</property>
  19. <property name="dialect">DB_DIALECT</property>
  20. DB_OPTIONAL
  21. <property name="dbcp.poolPreparedStatements">true</property>
  22. <property name="dbcp.maxOpenPreparedStatements">20</property>
  23. <mapping resource="xwiki.hbm.xml"/>
  24. <mapping resource="feeds.hbm.xml"/>
  25. <mapping resource="activitystream.hbm.xml"/>
  26. <mapping resource="instance.hbm.xml"/>
  27. <mapping resource="mailsender.hbm.xml"/>
  28. </session-factory>
  29. </hibernate-configuration>