From 175ef775743deb44b40481642cb235cee275756e Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Thu, 3 Feb 2011 13:52:13 +0000 Subject: [PATCH] Prefixed section ids with repositories. to avoid overlaps with other ids. --- src/docbkx/repositories.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/docbkx/repositories.xml b/src/docbkx/repositories.xml index 7a156018f..ea0a26021 100644 --- a/src/docbkx/repositories.xml +++ b/src/docbkx/repositories.xml @@ -4,7 +4,7 @@ Repositories -
+
Introduction Implementing a data access layer of an application has been @@ -23,7 +23,7 @@ interfaces of Spring Data repositories.
-
+
Core concepts The central interface in Spring Data repository abstraction is @@ -32,7 +32,7 @@ type of the domain class and provides some sophisticated functionality around CRUD for the entity managed. - + Repository interface @@ -109,7 +109,7 @@ interface.
-
+
Query methods Next to standard CRUD functionality repositories are usually query @@ -234,7 +234,7 @@
-
+
Query creation The query builder mechanism built into Spring Data repository @@ -308,7 +308,7 @@
-
+
Special parameter handling To hand parameters to your query you simply define method @@ -456,10 +456,10 @@ UserRepository repository = factory.getRepository(UserRepository.class
-
+
Custom implementations -
+
Adding behaviour to single repositories Often it is necessary to provide a custom implementation for a few @@ -579,7 +579,7 @@ UserRepository repository = factory.getRepository(UserRepository.class
-
+
Adding custom behaviour to all repositories In other cases you might want to add a single method to all of