File tree Expand file tree Collapse file tree 15 files changed +47
-35
lines changed
specify-connection-options Expand file tree Collapse file tree 15 files changed +47
-35
lines changed Original file line number Diff line number Diff line change 1
1
define: prefix docs/drivers/java/sync
2
2
define: base https://www.mongodb.com/${prefix}
3
- define: versions v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 v5.0 v5.1 v5.2 v5.3 master
3
+ define: versions v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 v5.0 v5.1 v5.2 v5.3 v5.4 master
4
4
5
- symlink: current -> v5.3
5
+ symlink: current -> v5.4
6
6
symlink: upcoming -> master
7
7
8
8
raw: ${prefix}/ -> ${base}/current/
9
9
raw: ${prefix}/master -> ${base}/upcoming/
10
10
11
11
[*-v5.2]: ${prefix}/${version}/fundamentals/versioned-api/ -> ${base}/${version}/fundamentals/stable-api/
12
- [*-v4.6]: ${prefix}/${version}/fundamentals/crud/read-operations/change-streams/ -> ${base}/${version}/fundamentals/crud/read-operations/retrieve/
13
12
[*-master]: ${prefix}/${version}/fundamentals/csfle/ -> ${base}/${version}/fundamentals/encrypt-fields/
14
13
[*-master]: ${prefix}/${version}/fundamentals/crud/write-operations/change-a-document/ -> ${base}/${version}/fundamentals/crud/write-operations/modify/
15
- [*-v4.10]: ${prefix}/${version}/fundamentals/connection/socks/ -> ${base}/${version}/
16
- [*-v4.8]: ${prefix}/${version}/connection-troubleshooting/ -> ${base}/${version}/
14
+
15
+ # TOC evolution redirects
16
+
17
17
[v5.0-master]: ${prefix}/${version}/fundamentals/crud/ -> ${base}/${version}/crud/
18
18
[v5.0-master]: ${prefix}/${version}/fundamentals/crud/read-operations/ -> ${base}/${version}/crud/query-documents/
19
19
[v5.0-master]: ${prefix}/${version}/fundamentals/crud/read-operations/retrieve/ -> ${base}/${version}/crud/query-documents/find/
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ toc_landing_pages = [
17
17
" /logging-monitoring" ,
18
18
" /api-documentation" ,
19
19
" /security" ,
20
- " /security/auth"
20
+ " /security/auth" ,
21
21
]
22
22
23
23
sharedinclude_root = " https://raw.githubusercontent.com/10gen/docs-shared/main/"
@@ -26,7 +26,7 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
26
26
driver = " java"
27
27
driver-long = " MongoDB Java Driver"
28
28
driver-short = " Java driver"
29
- version = " 5.3 "
29
+ version = " 5.4 "
30
30
full-version = " {+version+}.0"
31
31
mdb-server = " MongoDB Server"
32
32
package-name-org = " mongodb-org"
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ against the connected secondary node if you set the read preference to
250
250
251
251
You can also specify the ``serverSelectionTimeoutMS`` connection option
252
252
to adjust the amount of time in which the driver must select a server. To
253
- learn more, see the :ref:`java-connection-uri-options ` guide.
253
+ learn more, see the :ref:`mcs-cluster-settings ` guide.
254
254
255
255
.. _java-miscellaneous-errors:
256
256
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Specify Connection Options
26
26
Cluster Settings </connection/specify-connection-options/cluster-settings>
27
27
Server Settings </connection/specify-connection-options/server-settings>
28
28
Socket Settings </connection/specify-connection-options/socket-settings>
29
+ Security Settings </connection/specify-connection-options/security-connection-options>
29
30
Configure Client-level CRUD Settings </connection/specify-connection-options/configure-crud>
30
31
Network Compression </connection/specify-connection-options/network-compression>
31
32
JNDI Datasource </connection/specify-connection-options/jndi>
@@ -63,4 +64,4 @@ You can learn how to using logging and monitoring with the {+driver-short+} in
63
64
the :ref:`Logging and Monitoring section <java-logging-monitoring>`, which
64
65
includes the following pages:
65
66
66
- .. include:: /includes/logging-monitoring/logging-monitoring-pages.rst
67
+ .. include:: /includes/logging-monitoring/logging-monitoring-pages.rst
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ MongoDB supports many options for securing your data before and during
18
18
transportation. For information about security options, see our :ref:`Security
19
19
section <java-security>`, which includes the following:
20
20
21
- .. include:: /includes/security/security-pages.rst
21
+ .. include:: /includes/security/security-pages.rst
Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ retrieve.
56
56
57
57
Call the ``find()`` method on an instance of a ``MongoCollection`` to filter for
58
58
documents that match the provided query. For more information about how to
59
- specify a query, see our :doc:`Specify a Query </crud/query-document>` guide.
59
+ specify a query, see our :ref:`java-query` guide.
60
+
60
61
You can then use methods such as ``forEach()`` or ``cursor()`` to retrieve
61
62
matching documents. For more information, see the `FindIterable
62
63
<{+api+}/apidocs/mongodb-driver-sync/com/mongodb/client/FindIterable.html>`__
Original file line number Diff line number Diff line change 1
1
.. note :: Example Setup
2
2
3
- This example connects to an instance of MongoDB by using a connection URI. To learn
4
- more about connecting to your MongoDB instance, see the :ref: ` connection guide
5
- < connect-to-mongodb>` . This example also uses the `` movies `` collection in the
6
- `` sample_mflix `` database included in the :atlas: ` Atlas sample datasets
7
- </sample-data?jmp=docs_driver_java > `. You can load them into
8
- your database on the free tier of MongoDB Atlas by following the :atlas: ` Get
9
- Started with Atlas Guide
10
- </getting-started/#atlas-getting-started?jmp=docs_driver_java > `.
3
+ This example connects to an instance of MongoDB by using a
4
+ connection URI. To learn more about connecting to your MongoDB
5
+ instance, see the :ref: ` java- connect-to-mongodb` guide . This example
6
+ also uses the `` movies `` collection in the `` sample_mflix `` database
7
+ included in the :atlas: ` Atlas sample datasets </sample-data> `. You
8
+ can load them into your database on the free tier of MongoDB Atlas
9
+ by following the :atlas: ` Get Started with Atlas Guide
10
+ </getting-started/#atlas-getting-started> `.
Original file line number Diff line number Diff line change 12
12
- Java 6
13
13
- Java 5
14
14
15
- * - 4.11 to 5.3
15
+ * - 4.11 to 5.4
16
16
- ✓
17
17
- ✓
18
18
- ✓
57
57
- ✓
58
58
-
59
59
60
- .. [#virtual-threads-note ] This driver version is not compatible with virtual threads.
60
+ .. [#virtual-threads-note ] This driver version is not compatible with
61
+ virtual threads.
Original file line number Diff line number Diff line change 14
14
- MongoDB 4.0
15
15
- MongoDB 3.6
16
16
17
- * - 5.2 to 5.3
17
+ * - 5.2 to 5.4
18
18
- ✓
19
19
- ✓
20
20
- ✓
Original file line number Diff line number Diff line change 2
2
- :ref: `In-Use Encryption <java-fle >`
3
3
- :ref: `TLS/SSL <tls-ssl >`
4
4
- :ref: `SOCKS5 Proxy <java-connect-socks >`
5
- - :ref: `Validate Driver Artifact Signatures <java-validate-signatures >`
5
+ - :ref: `Validate Driver Artifact Signatures <java-validate-signatures >`
You can’t perform that action at this time.
0 commit comments