Hi,
I am fairly new to iBATIS. I am using SQL Maps v. 2.3.4 in a servlet.
My config is outlined here:
<transactionManager type="JDBC">
<dataSource type="SIMPLE">
... connection properties
</dataSource>
</transactionManager>
My DB is PostgreSql.
I have a single SqlMapClient instance as a member variable of the servlet,
initialized in its init() method. Then, multiple clients call its service()
method to generate a report, that consists of many select queries, using the
single SQL map instance.
My questions are:
1) What are the default values for connection pool size? Is it 10?
2) Is SqlMapClient thread-safe?
Thanks,
Andrew