lcjing commented on issue #31618:
URL:
https://github.com/apache/shardingsphere/issues/31618#issuecomment-2154547222
It's not a configuration issue. I checked the source code and found the
problem. Why is the driverClassName property that I configured ignored here? Is
it a bug?
```java
public final class DataSourcePoolReflection {
static {
GENERAL_CLASS_TYPES = new HashSet<>(
Arrays.asList(boolean.class, Boolean.class, int.class,
Integer.class, long.class, Long.class, String.class, Collection.class,
List.class, Properties.class));
SKIPPED_PROPERTY_KEYS = new
HashSet<>(Arrays.asList("loginTimeout", "driverClassName"));
}
...
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]