Created
March 15, 2013 23:23
-
-
Save CaglarGonul/5173983 to your computer and use it in GitHub Desktop.
Fun with Electroserver, Hibernate and Thread Poolhibernateconfig.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> | |
<hibernate-configuration> | |
<session-factory> | |
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> | |
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> | |
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/game_db</property> | |
<property name="hibernate.connection.username">root</property> | |
<property name="hibernate.connection.password">!.Wlu9RrCA</property> | |
<!-- Use the C3P0 connection pool provider --> | |
<property name="hibernate.c3p0.min_size">5</property> | |
<property name="hibernate.c3p0.max_size">20</property> | |
<property name="hibernate.c3p0.timeout">300</property> | |
<property name="hibernate.c3p0.max_statements">50</property> | |
<property name="hibernate.c3p0.idle_test_period">3000</property> | |
<property name="hibernate.show_sql">true</property> | |
<property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property> | |
<property name="format_sql">true</property> | |
</session-factory> | |
</hibernate-configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment