Douglas Hammond wrote:
> <bean id="dsAdapter" destroy-method="close"
> class="org.postgresql.ds.PGConnectionPoolDataSource">
> <property name="defaultAutoCommit" value="false" />
AFAIK there is no javabean accessor on PGConnectionPoolDataSource for a
property named "defaultAutoCommit".
If you try to set some obviously incorrect property
("thisPropertyDoesNotExist"), what happens? The bug may be that whatever
is building the DS from the XML is silently ignoring properties that it
can't find an accessor for, rather than complaining about misconfiguration.
-O