java - Configuring c3p0 in jBoss standalone.xml -


i need configure below hibernate configuration in jboss 'standalone.xml' file. please advise how configue in jboss.

i using jboss 7.1 application server , mysql db

configuration:-

    <property name="hibernate.c3p0.min_size" value="5"/>     <property name="hibernate.c3p0.max_size" value="20"/>     <property name="hibernate.c3p0.timeout" value="300"/>     <property name="hibernate.c3p0.max_statements" value="50"/>     <property name="hibernate.c3p0.idle_test_period" value="3000"/>     <property name="hibernate.c3p0.checkouttimeout" value="120000"/>     <property name="hibernate.connection.pool_size" value="20"/> 


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -