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: spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/nosql.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -259,7 +259,7 @@ Each will be called in order with the `ConfigBuilder` that is used to build the
259
259
[[data.nosql.neo4j.repositories]]
260
260
==== Spring Data Neo4j Repositories
261
261
Spring Data includes repository support for Neo4j.
262
-
For complete details of Spring Data Neo4j, see the {spring-data-neo4j-docs}[reference documentation].
262
+
For complete details of Spring Data Neo4j, see the {spring-data-neo4j-docs}/[reference documentation].
263
263
264
264
Spring Data Neo4j shares the common infrastructure with Spring Data JPA as many other Spring Data modules do.
265
265
You could take the JPA example from earlier and define `City` as Spring Data Neo4j `@Node` rather than JPA `@Entity` and the repository abstraction works in the same way, as shown in the following example:
@@ -386,7 +386,7 @@ Repositories and documents are found through scanning.
386
386
By default, the <<using#using.auto-configuration.packages,auto-configuration packages>> are scanned.
387
387
You can customize the locations to look for repositories and documents by using `@EnableElasticsearchRepositories` and `@EntityScan` respectively.
388
388
389
-
TIP: For complete details of Spring Data Elasticsearch, see the {spring-data-elasticsearch-docs}[reference documentation].
389
+
TIP: For complete details of Spring Data Elasticsearch, see the {spring-data-elasticsearch-docs}/[reference documentation].
390
390
391
391
Spring Boot supports both classic and reactive Elasticsearch repositories, using the `ElasticsearchRestTemplate` or `ReactiveElasticsearchTemplate` beans.
392
392
Most likely those beans are auto-configured by Spring Boot given the required dependencies are present.
@@ -501,7 +501,7 @@ Repositories and entities are found through scanning.
501
501
By default, the <<using#using.auto-configuration.packages,auto-configuration packages>> are scanned.
502
502
You can customize the locations to look for repositories and entities by using `@EnableCassandraRepositories` and `@EntityScan` respectively.
503
503
504
-
TIP: For complete details of Spring Data Cassandra, see the https://docs.spring.io/spring-data/cassandra/docs/[reference documentation].
504
+
TIP: For complete details of Spring Data Cassandra, see the {spring-data-cassandra-docs}/[reference documentation].
505
505
506
506
507
507
@@ -555,7 +555,7 @@ Repositories and documents are found through scanning.
555
555
By default, the <<using#using.auto-configuration.packages,auto-configuration packages>> are scanned.
556
556
You can customize the locations to look for repositories and documents by using `@EnableCouchbaseRepositories` and `@EntityScan` respectively.
557
557
558
-
For complete details of Spring Data Couchbase, see the {spring-data-couchbase-docs}[reference documentation].
558
+
For complete details of Spring Data Couchbase, see the {spring-data-couchbase-docs}/[reference documentation].
559
559
560
560
You can inject an auto-configured `CouchbaseTemplate` instance as you would with any other Spring Bean, provided a `CouchbaseClientFactory` bean is available.
561
561
This happens when a `Cluster` is available, as described above, and a bucket name has been specified:
@@ -625,7 +625,7 @@ Repositories and documents are found through scanning.
625
625
By default, the <<using#using.auto-configuration.packages,auto-configuration packages>> are scanned.
626
626
You can customize the locations to look for repositories and documents by using `@EnableLdapRepositories` and `@EntityScan` respectively.
627
627
628
-
For complete details of Spring Data LDAP, see the https://docs.spring.io/spring-data/ldap/docs/1.0.x/reference/html/[reference documentation].
628
+
For complete details of Spring Data LDAP, see the {spring-data-ldap-docs}/[reference documentation].
629
629
630
630
You can also inject an auto-configured `LdapTemplate` instance as you would with any other Spring Bean, as shown in the following example:
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -248,7 +248,7 @@ For JPA components (such as converters) that are created as Spring beans, use `O
248
248
====
249
249
250
250
TIP: We have barely scratched the surface of Spring Data JPA.
251
-
For complete details, see the {spring-data-jpa-docs}[Spring Data JPA reference documentation].
251
+
For complete details, see the {spring-data-jpa-docs}/[Spring Data JPA reference documentation].
252
252
253
253
254
254
@@ -260,7 +260,7 @@ To use Spring Data Envers, make sure your repository extends from `RevisionRepos
260
260
261
261
include::code:CountryRepository[]
262
262
263
-
NOTE: For more details, check the {spring-data-jpa-docs}/#envers[Spring Data Envers reference documentation].
263
+
NOTE: For more details, check the {spring-data-jpa-docs}/envers.html[Spring Data Envers reference documentation].
264
264
265
265
266
266
@@ -312,7 +312,7 @@ Spring Boot will auto-configure Spring Data's JDBC repositories when the necessa
312
312
They can be added to your project with a single dependency on `spring-boot-starter-data-jdbc`.
313
313
If necessary, you can take control of Spring Data JDBC's configuration by adding the `@EnableJdbcRepositories` annotation or an `AbstractJdbcConfiguration` subclass to your application.
314
314
315
-
TIP: For complete details of Spring Data JDBC, see the {spring-data-jdbc-docs}[reference documentation].
315
+
TIP: For complete details of Spring Data JDBC, see the {spring-data-jdbc-docs}/[reference documentation].
316
316
317
317
318
318
@@ -522,4 +522,4 @@ The following example shows a typical Spring Data repository interface definitio
522
522
523
523
include::code:CityRepository[]
524
524
525
-
TIP: We have barely scratched the surface of Spring Data R2DBC. For complete details, see the {spring-data-r2dbc-docs}[Spring Data R2DBC reference documentation].
525
+
TIP: We have barely scratched the surface of Spring Data R2DBC. For complete details, see the {spring-data-r2dbc-docs}/[Spring Data R2DBC reference documentation].
0 commit comments