- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
JOOQ 手册说明如下:
Out of the box, all jOOQ provided publishers will block on theunderlying JDBC connection, but if you provide jOOQ with aio.r2dbc.spi.Connection or io.r2dbc.spi.ConnectionFactory, then thepublishers will execute queries in a non-blocking fashion on an R2DBCdriver.
如何为 DSLContext 提供 io.r2dbc.spi.Connection 或 io.r2dbc.spi.ConnectionFactory?
我试过 DSL.using() 但它不接受这个接口(interface)。
另外 - 我可以通过 Spring Boot 定义带有反应式驱动程序的 DSLContext 吗?
谢谢。
最佳答案
How do I provide DSLContext with io.r2dbc.spi.Connection or io.r2dbc.spi.ConnectionFactory ?
在提出这个问题时,jOOQ 3.14 还不支持 R2DBC。使用 jOOQ 3.15,你可以这样写:
DSLContext ctx1 = DSL.using(connection);
DSLContext ctx2 = DSL.using(connectionFactory);
就像 JDBC 连接一样。
Also - can I define the DSLContext with reactive driver through Spring Boot ?
我怀疑这将在 jOOQ 3.15 发布后成为可能(~ 2021 年第二季度末,没有 promise )。在那之前,只需公开一个类型为 DSLContext
的 @Bean
,它是您从注入(inject)的 ConnectionFactory
关于mysql - 如何从响应式(Reactive) MariaDB 连接创建 JOOQ DSLContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67320319/
我是一名优秀的程序员,十分优秀!