I've just updated from batch trunk and had a problem compiling ExtendedConnectionDataSourceProxy under JDK 6. The DataSource interface has extended Wrapper, which is a new interface in Java 6. These are not implemented in ExtendedConnectionDataSourceProxy. I added the following in order to get past the issue:
Will these methods be implemented in the near future (at least stubbed out like above)?Code:public boolean isWrapperFor(Class<?> iface) throws SQLException { return false; } public <T> T unwrap(Class<T> iface) throws SQLException { throw new SQLException("unwrap not supported"); }
Regards,
xylocore


Reply With Quote