Skip to content

Commit dd1df79

Browse files
committed
1 parent 967eb69 commit dd1df79

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

src/main/antora/modules/ROOT/pages/cassandra.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Spring Data support for Apache Cassandra contains a wide range of features:
88
* Spring configuration support with xref:cassandra/configuration.adoc[Java-based `@Configuration` classes or the XML namespace].
99
* The xref:cassandra/cql-template.adoc[`CqlTemplate`, `AsyncCqlTemplate`, and `ReactiveCqlTemplate`] helper classes that increases productivity by properly handling common Cassandra data access operations.
1010
* The xref:cassandra/template.adoc[`CassandraTemplate`, `AsyncCassandraTemplate`, and `ReactiveCassandraTemplate`] helper classes that provide object mapping between CQL Tables and POJOs.
11-
* xref:cassandra/cql-template.adoc#exception-translation[Exception translation] into Spring's portable {springDocsUrl}data-access.html#dao-exceptions[Data Access Exception Hierarchy].
12-
* Feature rich xref:object-mapping.adoc[object mapping] integrated with _Spring's_ {springDocsUrl}core.html#core-convert[Conversion Service].
11+
* xref:cassandra/cql-template.adoc#exception-translation[Exception translation] into Spring's portable {springDocsUrl}/data-access/dao.html#dao-exceptions[Data Access Exception Hierarchy].
12+
* Feature rich xref:object-mapping.adoc[object mapping] integrated with _Spring's_ {springDocsUrl}/core/validation/convert.html[Conversion Service].
1313
* xref:object-mapping.adoc#mapping.usage-annotations[Annotation-based mapping] metadata that is extensible to support other metadata formats.
1414
* Java-based xref:cassandra/template.adoc#cassandra.template.query[query, criteria, and update DSLs].
1515
* Automatic implementation of xref:repositories.adoc[imperative and reactive `Repository` interfaces] including support for xref:repositories/custom-implementations.adoc[custom query methods].

src/main/antora/modules/ROOT/pages/cassandra/configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This approach lets you use the standard `com.datastax.oss.driver.api.core.CqlSes
2727
An alternative is to register an instance of `com.datastax.oss.driver.api.core.CqlSession` with the container by using Spring's `CqlSessionFactoryBean`.
2828
As compared to instantiating a `com.datastax.oss.driver.api.core.CqlSession` instance directly, the `FactoryBean` approach has the added advantage of also providing the container with an `ExceptionTranslator` implementation that translates Cassandra exceptions to exceptions in Spring's portable `DataAccessException` hierarchy.
2929
This hierarchy and the use of
30-
`@Repository` is described in {springDocsUrl}data-access.html[Spring's DAO support features].
30+
`@Repository` is described in {springDocsUrl}/data-access/dao.html[Spring's DAO support features].
3131

3232
The following example shows Java-based factory class usage:
3333

src/main/antora/modules/ROOT/pages/cassandra/cql-template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ The Spring Framework provides exception translation for a wide variety of databa
279279
This has traditionally been for JDBC and JPA.
280280
Spring Data for Apache Cassandra extends this feature to Apache Cassandra by providing an implementation of the `org.springframework.dao.support.PersistenceExceptionTranslator` interface.
281281

282-
The motivation behind mapping to Spring's {springDocsUrl}html/dao.html#dao-exceptions[consistent data access exception hierarchy]
282+
The motivation behind mapping to Spring's {springDocsUrl}/data-access/dao.html#dao-exceptions[consistent data access exception hierarchy]
283283
is to let you write portable and descriptive exception handling code without resorting to coding against and handling specific Cassandra exceptions.
284284
All of Spring's data access exceptions are inherited from the
285285
`DataAccessException` class, so you can be sure that you can catch all database-related exceptions within a single try-catch block.

src/main/antora/modules/ROOT/pages/cassandra/reactive-cassandra.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The reactive Cassandra support contains a wide range of features:
77
* `ReactiveCqlTemplate` helper class that increases productivity by properly handling common Cassandra data access operations.
88
* `ReactiveCassandraTemplate` helper class that increases productivity by using `ReactiveCassandraOperations` in a reactive manner.
99
It includes integrated object mapping between tables and POJOs.
10-
* Exception translation into Spring's portable {springDocsUrl}data-access.html#dao-exceptions[Data Access Exception Hierarchy].
11-
* Feature rich object mapping integrated with Spring's {springDocsUrl}core.html#core-convert[Conversion Service].
10+
* Exception translation into Spring's portable {springDocsUrl}/data-access/dao.html#dao-exceptions[Data Access Exception Hierarchy].
11+
* Feature rich object mapping integrated with Spring's {springDocsUrl}/core/validation/convert.html[Conversion Service].
1212
* Java-based Query, Criteria, and Update DSLs.
1313
* Automatic implementation of `Repository` interfaces, including support for custom finder methods.
1414

@@ -19,7 +19,7 @@ Reactive usage is broken up into two phases: Composition and Execution.
1919

2020
Calling repository methods lets you compose a reactive sequence by obtaining `Publisher` instances and applying operators.
2121
No I/O happens until you subscribe.
22-
Passing the reactive sequence to a reactive execution infrastructure, such as {springDocsUrl}web.html#web-reactive[Spring WebFlux]
22+
Passing the reactive sequence to a reactive execution infrastructure, such as {springDocsUrl}/web/webflux.html[Spring WebFlux]
2323
or https://vertx.io/docs/vertx-reactive-streams/java/[Vert.x]), subscribes to the publisher and initiate the actual execution.
2424
See https://projectreactor.io/docs/core/release/reference/#reactive.subscribe[the Project reactor documentation] for more detail.
2525

src/main/antora/resources/antora-resources/antora.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ asciidoc:
55
attributes:
66
attribute-missing: 'warn'
77
chomp: 'all'
8-
version: ${project.version}
9-
copyright-year: ${current.year}
10-
springversionshort: ${spring.short}
11-
springversion: ${spring}
12-
commons: ${springdata.commons.docs}
8+
version: '${project.version}'
9+
copyright-year: '${current.year}'
10+
springversionshort: '${spring.short}'
11+
springversion: '${spring}'
12+
commons: '${springdata.commons.docs}'
1313
include-xml-namespaces: false
1414
spring-data-commons-docs-url: '${documentation.baseurl}/spring-data/commons/reference/${springdata.commons.short}'
1515
spring-data-commons-javadoc-base: '{spring-data-commons-docs-url}/api/java'
1616
springdocsurl: '${documentation.baseurl}/spring-framework/reference/{springversionshort}'
1717
spring-framework-docs: '{springdocsurl}'
1818
springjavadocurl: '${documentation.spring-javadoc-url}'
1919
spring-framework-javadoc: '{springjavadocurl}'
20-
springhateoasversion: ${spring-hateoas}
21-
releasetrainversion: ${releasetrain}
20+
springhateoasversion: '${spring-hateoas}'
21+
releasetrainversion: '${releasetrain}'
2222
store: Cassandra

0 commit comments

Comments
 (0)