我正在尝试通过 Agroal 在本机映像中建立动态数据库连接。无法使用默认配置参数,因为我在编译时不知道连接参数。现在还有可能吗?连接在运行时是这样建立的:
AgroalDataSource.from(
AgroalDataSourceConfigurationSupplier()
...)
我目前看到此错误:
Class io.agroal.pool.ConnectionHandler[] is instantiated reflectively but was never registered.
Register the class by using org.graalvm.nativeimage.hosted.RuntimeReflection
安装的功能包括:[agroal, cdi, jdbc-h2, jdbc-mysql, jdbc-postgresql, kotlin, narayana-jta, resteasy, resteasy-jackson]
它在 JVM 上运行良好,但不使用 Graal。感觉应该是可能的,我可能在这里遗漏了一些东西。我希望添加agraol
扩展就足够了,但显然没有正确选择。