Quarkus

Quarkus中数据库的使用

Quarkus中有两种数据库,一种是连接普通数据库的
如果只是简单的使用查询或者删除,那么继承PanacheRepository,
在依赖包中需要安装


 io.quarkus
   quarkus-hibernate-orm-panache

但是如果需要使用响应式reactive数据库,记得把上述依赖去掉
保留上述依赖Quarkus在启动上午时候回首先去找jdbc的连接,如果没有找到,那么会报出

[error]: Build step io.quarkus.agroal.deployment.AgroalProcessor#build threw an exception: io.quarkus.runtime.configuration.ConfigurationException: Unable to find a JDBC driver corresponding to the database kind 'mysql' for the default datasource. Either provide a suitable JDBC driver extension, define the driver manually, or disable the JDBC datasource by adding 'quarkus.datasource.jdbc=false' to your configuration if you don't need it.

你可能感兴趣的:(Quarkus,java)