我一直在密切关注pivot 的r2dbc 更新,我希望使用这种方法构建我的应用程序。我尝试了一些带有 r2dbc postgres 驱动程序的小型应用程序,如下所示:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jdbc</artifactId>
<version>1.0.0.r2dbc-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-postgresql</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
正如 Pivotal 所说,这是一个实验项目,其最终目标是最终影响 ADBA。如果包含在 Spring/SpringBoot 的发布版本中,这可能非常有用。现在的问题是,阻止 Pivotal 将其包含在 RELEASE 版本中的缺点到底是什么。另外,是否建议使用 SNAPSHOT 版本上线?
谢谢,GV