From fc8cdbe864271e2d014b48f9069b552ce5c94e7c Mon Sep 17 00:00:00 2001 From: Mateusz Chrzonstowski Date: Tue, 26 Apr 2022 14:07:49 +0200 Subject: [PATCH] Use a proper configuration class name in docs. Original pull request: #635. --- jdbc/basics/README.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jdbc/basics/README.adoc b/jdbc/basics/README.adoc index 1ec4b6f2..94b0af2b 100644 --- a/jdbc/basics/README.adoc +++ b/jdbc/basics/README.adoc @@ -6,9 +6,9 @@ This example demonstrate basic usage of JDBC based repositories. * The `SimpleEntityTests` demonstrate CRUD operations for an entity without references, just simple properties of various types. -* The `CategoryContext` shows how to configure an application context so that Spring Data JDBC can create repositories. +* The `CategoryConfiguration` shows how to configure an application context so that Spring Data JDBC can create repositories. -* The `ApplicationListener` registered in `CategoryContext` demonstrate how to react to events published by Spring Data JDBC and how entities can get manipulated in such event listeners. +* The `ApplicationListener` registered in `CategoryConfiguration` demonstrate how to react to events published by Spring Data JDBC and how entities can get manipulated in such event listeners. === AggregateTests @@ -27,4 +27,4 @@ This is achieved by providing a custom `NamingStrategy` which maps both to the s * `LegoSetRepository` has methods that utilize `@Query` annotations. -* Note that `Model` is a value class, i.e. it is immutable, and doesn't have an ID. \ No newline at end of file +* Note that `Model` is a value class, i.e. it is immutable, and doesn't have an ID.