-
Notifications
You must be signed in to change notification settings - Fork 41.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring.datasource.hikari.data-source-class-name cannot be used as a driver class name is always required and Hikari does not accept both #44938
Comments
Hm. It seems the way forward is to actually just instantiate any custom datasource I want, and maybe using the properties to hold common stuff. (*thinking loud here) What I actually want to do is this in configuration: @TestConfiguration
static class F {
@Bean
public DataSource neo4jDataSource(
DataSourceProperties dataSourceProperties,
@Value("${spring.datasource.hikari.maximum-pool-size}") int maximumPoolSize) {
var neo4jDataSource = new Neo4jDataSource();
neo4jDataSource.setUrl(dataSourceProperties.getUrl());
neo4jDataSource.setPassword(dataSourceProperties.getPassword());
neo4jDataSource.setUser(dataSourceProperties.getUsername());
// Create pool
var hikariConfig = new HikariConfig();
hikariConfig.setMaximumPoolSize(maximumPoolSize);
hikariConfig.setDataSource(neo4jDataSource);
return new HikariDataSource(hikariConfig);
}
} aka creating a nested data source. So I can just add And I can use But, the Spring Boot Datasource builder requires the driver and will apply it to the Hikari config, and that is not valid (Hikari will complain about using both driver class and data source) |
org.springframework.boot.jdbc.UnsupportedDataSourcePropertyException
Thanks for the report, @michael-simons. This use case – using a connection pool with a custom nested As you've observed, the auto-configuration really wants to set a driver class name on the connection pool. This logic is in The problem's related to the configuration properties being applied in two passes such that the first pass (that applies general properties) knows nothing about the second pass (that applies Hikari-specific properties). This makes it hard for it to know to ignore a missing driver class name because a data source class name is going to be applied. I wondered if we could work around the problem by using a bean post-processor to clear the driver class name when the data source class name has been set. Unfortunately that does not work as Hikari throws an exception when the driver class name is set to The least bad option that I've found thus far is to use a bean post-processor to set the
I don't think this is something you should do in your app (I think it would be better just to configure the data source manually), but perhaps it'll help us to come up with a better way to support this out of the box. |
We think we might be able to change the code that creates the Hikari DataSource to be more lenient about the need for a driver class name, possibly by passing a flag to the private |
Hey Andy. I was on that code as well… Prior to the checks on the driver name, you mentioned here
I think it would be a good compromise. WRT Bean postprocessor: I'd rather not do this in my app either :) I'd rather just wrap my datasource than in Hikari manually. Thanks a lot for the feedback / input. 🙇 |
This test, added to @Test
@ClassPathExclusions({ "h2-*.jar", "hsqldb-*.jar" })
void configureDataSourceClassNameWithNoEmbeddedDatabaseAvailable() {
this.contextRunner
.withPropertyValues("spring.datasource.url=jdbc:example//",
"spring.datasource.hikari.data-source-class-name=example.ExampleDataSource")
.run((context) -> {
HikariDataSource ds = context.getBean(HikariDataSource.class);
ds.getConnection();
});
} This test fails because Hikari does not support setting both a driver class name and a DataSource class name: @Test
void configureDataSourceClassNameToOverrideUseOfAnEmbeddedDatabase() {
this.contextRunner
.withPropertyValues("spring.datasource.url=jdbc:example//",
"spring.datasource.hikari.data-source-class-name=example.ExampleDataSource")
.run((context) -> {
HikariDataSource ds = context.getBean(HikariDataSource.class);
ds.getConnection();
});
} A test where the driver class name can be determined from the JDBC URL would also fail. |
@michael-simons with the changes made here and for #44994, you should now be able to configure
Should a
|
That is wonderful. I indeed added such an extension already. FWIW the background of this, I do maintain now the JDBC driver for Neo4j for a while and I chose to use the I will add those bits in https://github.com/neo4j/neo4j-jdbc/pull/904/files#diff-142a855adfd1b5cf732debc1bd3c150d33f68b10d2d7160bb522797d73f393eb than, too. |
Given a valid
javax.sql.DataSource
implementation I expect to be able to used it as type into configure my application.
However, this fails:
with
I can of course not omit the URL, as this is required for the connection.
However,
setUrl
is not defined part of theDataSource
interface, yet the builder insists to propagate all non-null properties from the datasource properties inDataSourceBuilder#build
.It will not fail on Hikari because there's dedicated config class.
Reproducer is attached.
demo.zip
The text was updated successfully, but these errors were encountered: