From 62ddd29bad4e4354246de9c86e0b40cbf9063937 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Tue, 12 Aug 2014 12:03:54 +0200 Subject: [PATCH] DATACMNS-551 - Fixed some broken links in the reference documentation. --- src/main/asciidoc/repositories.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/repositories.adoc b/src/main/asciidoc/repositories.adoc index 965869612..c1b5a4ab7 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -7,7 +7,7 @@ The goal of Spring Data repository abstraction is to significantly reduce the am ==== _Spring Data repository documentation and your module_ -This chapter explains the core concepts and interfaces of Spring Data repositories. The information in this chapter is pulled from the Spring Data Commons module. It uses the configuration and code samples for the Java Persistence API (JPA) module. Adapt the XML namespace declaration and the types to be extended to the equivalents of the particular module that you are using. <> covers XML configuration which is supported across all Spring Data modules supporting the repository API, <> covers the query method keywords supported by the repository abstraction in general. For detailed information on the specific features of your module, consult the chapter on that module of this document. +This chapter explains the core concepts and interfaces of Spring Data repositories. The information in this chapter is pulled from the Spring Data Commons module. It uses the configuration and code samples for the Java Persistence API (JPA) module. Adapt the XML namespace declaration and the types to be extended to the equivalents of the particular module that you are using. <> covers XML configuration which is supported across all Spring Data modules supporting the repository API, <> covers the query method keywords supported by the repository abstraction in general. For detailed information on the specific features of your module, consult the chapter on that module of this document. ==== [[repositories.core-concepts]] @@ -348,7 +348,7 @@ This example excludes all interfaces ending in `SomeRepository` from being insta [[repositories.create-instances.java-config]] === JavaConfig -The repository infrastructure can also be triggered using a store-specific `@Enable${store}Repositories` annotation on a JavaConfig class. For an introduction into Java-based configuration of the Spring container, see the reference documentation.footnote:[JavaConfig in the Spring reference documentation - link:$${spring-framework-docs}/beans.html#beans-java$$[]] +The repository infrastructure can also be triggered using a store-specific `@Enable${store}Repositories` annotation on a JavaConfig class. For an introduction into Java-based configuration of the Spring container, see the reference documentation.footnote:[link:{spring-framework-docs}/beans.html#beans-java[JavaConfig in the Spring reference documentation]] A sample configuration to enable Spring Data repositories looks something like this.