From d40a690170ce8e7ed7a2e2d0204d0874745bcb54 Mon Sep 17 00:00:00 2001 From: "a.ardeev" Date: Mon, 26 Jan 2026 10:07:58 +0300 Subject: [PATCH 1/2] Updates info on Java Connectors Adds details on tarantool-java-sdk connector as the mainely supported connector. Other java connectors are marked as planned for deprecation --- doc/connector/java.rst | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/doc/connector/java.rst b/doc/connector/java.rst index fc6d3d81f3..a442b4c2b1 100644 --- a/doc/connector/java.rst +++ b/doc/connector/java.rst @@ -3,7 +3,22 @@ Java ==== -There are two Java connectors available: +The following Java connectors are available: + +* `tarantool-java-SDK `__ is + the primary connector that is actively being developed and maintained. This + connector supports current Tarantool versions and features. Support for + `Spring Data `__ and + `Testcontainers `__ is implemented as modules within the + Tarantool Java SDK project, providing seamless integration with these frameworks. + * Separate documentation is available for each major and minor Tarantool Java SDK version, + for example: https://tarantool.github.io/tarantool-java-sdk/1.5.*/ + * For the most up-to-date documentation (including the latest changes and features), + please refer to the dev version: https://tarantool.github.io/tarantool-java-sdk/dev/ + +.. NOTE:: + + The connectors below are either deprecated or are planned for deprecation. * `cartridge-java `__ supports both single Tarantool nodes and clusters, @@ -15,15 +30,3 @@ There are two Java connectors available: and offers JDBC interface support for single Tarantool nodes. This module *isn't currently maintained* and does not support the newest 2.x Tarantool features or Tarantool clusters. - -The following modules support Java libraries and frameworks: - -* `TestContainers Tarantool module `__ - adds support for the popular `TestContainers framework `__ - used for integration testing of Java applications. -* `Spring Data Tarantool module `__ - adds support for the `Spring framework `__. - - Check out the - `Spring Pet Clinic project `__ - to get familiar with using this module in real applications. From 2a2ad3d75130ba60e68b304a6028a94f4d16c039 Mon Sep 17 00:00:00 2001 From: "a.ardeev" Date: Mon, 26 Jan 2026 10:52:18 +0300 Subject: [PATCH 2/2] Fixed syntax --- doc/connector/java.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/connector/java.rst b/doc/connector/java.rst index a442b4c2b1..a2cff21805 100644 --- a/doc/connector/java.rst +++ b/doc/connector/java.rst @@ -11,9 +11,10 @@ The following Java connectors are available: `Spring Data `__ and `Testcontainers `__ is implemented as modules within the Tarantool Java SDK project, providing seamless integration with these frameworks. - * Separate documentation is available for each major and minor Tarantool Java SDK version, + + * Separate documentation is available for each major and minor Tarantool Java SDK version, for example: https://tarantool.github.io/tarantool-java-sdk/1.5.*/ - * For the most up-to-date documentation (including the latest changes and features), + * For the most up-to-date documentation (including the latest changes and features), please refer to the dev version: https://tarantool.github.io/tarantool-java-sdk/dev/ .. NOTE::