I am using spring Ibatis for database management in my java application.I need to enable connection pooling to increase the performance of the application.
i added following properties to SqlMapConfig.xml file to enable the connection pooling
<transactionManager type="JDBC" commitRequired="false">
<dataSource type="SIMPLE">
<property name="JDBC.Driver" value="com.mysql.jdbc.Driver"/>
<property name="JDBC.ConnectionURL" value="jdbc:mysql://localhost:3306/xxxxx"/>
<property name="JDBC.Username" value="xxxxxx"/>
<property name="JDBC.Password" value="xxxxxxx"/>
<property name="Pool.MaximumActiveConnections" value="50"/>
<property name="Pool.MaximumIdleConnections" value="20"/>
</dataSource>
</transactionManager>
But i couldn't find any visible performance changes.Do i need to make any other changes or settings changes to enable the connection pooling?.
Following JAR files are added in my build path
ibatis-2.3.4.726.jar ibatis2-common-2.1.6.589.jar ibatis2-dao-2.1.6.589.jar