You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/antora/modules/ROOT/pages/couchbase.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ Spring Data support for Couchbase contains a wide range of features:
6
6
7
7
* Spring configuration support with xref:couchbase/configuration.adoc[Java-based `@Configuration` classes].
8
8
* The xref:couchbase/template.adoc[`CouchbaseTemplate` and `ReactiveCouchbaseTemplate`] helper classes that provide object mapping between Couchbase collections and POJOs.
9
-
* xref:couchbase/template.adoc#exception-translation[Exception translation] into Spring's portable {spring-data-commons-docs-url}data-access.html#dao-exceptions[Data Access Exception Hierarchy].
10
-
* Feature rich object mapping integrated with _Spring's_ {spring-data-commons-docs-url}core.html#core-convert[Conversion Service].
9
+
* xref:couchbase/template.adoc#exception-translation[Exception translation] into Spring's portable {spring-framework-docs}/data-access/dao.html#dao-exceptions[data-access.html#dao-exceptions][Data Access Exception Hierarchy].
10
+
* Feature rich object mapping integrated with _Spring's_ {spring-framework-docs}/core/validation/convert.html[Conversion Service].
11
11
* Annotation-based mapping metadata that is extensible to support other metadata formats.
12
12
* Automatic implementation of xref:repositories.adoc[imperative and reactive `Repository` interfaces] including support for xref:repositories/custom-implementations.adoc[custom query methods].
Copy file name to clipboardExpand all lines: src/main/antora/modules/ROOT/pages/couchbase/template.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ The Spring Framework provides exception translation for a wide variety of databa
138
138
This has traditionally been for JDBC and JPA.
139
139
Spring Data Couchbase extends this feature to Couchbase by providing an implementation of the `org.springframework.dao.support.PersistenceExceptionTranslator` interface.
140
140
141
-
The motivation behind mapping to Spring's {spring-data-commons-docs-url}html/dao.html#dao-exceptions[consistent data access exception hierarchy]
141
+
The motivation behind mapping to Spring's {spring-framework-docs}/data-access/dao.html#dao-exceptions[consistent data access exception hierarchy]
142
142
is to let you write portable and descriptive exception handling code without resorting to coding against and handling specific Couchbase exceptions.
143
143
All of Spring's data access exceptions are inherited from the
144
144
`DataAccessException` class, so you can be sure that you can catch all database-related exceptions within a single try-catch block.
0 commit comments