From 5c16a753ea859d0ee38bc7e48c92a48ddcea4483 Mon Sep 17 00:00:00 2001 From: Kurt Niemi Date: Thu, 16 Mar 2023 12:47:34 -0400 Subject: [PATCH] Fix broken links in reference documentation. Closes #1412 Original pull request #1453 --- src/main/asciidoc/jdbc.adoc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/asciidoc/jdbc.adoc b/src/main/asciidoc/jdbc.adoc index a8e268f3..ca812a8d 100644 --- a/src/main/asciidoc/jdbc.adoc +++ b/src/main/asciidoc/jdbc.adoc @@ -64,7 +64,7 @@ You can overwrite the repository methods with implementations that match your st [[jdbc.getting-started]] == Getting Started -An easy way to bootstrap setting up a working environment is to create a Spring-based project in https://spring.io/tools/sts[STS] or from https://start.spring.io[Spring Initializr]. +An easy way to bootstrap setting up a working environment is to create a Spring-based project in https://spring.io/tools[Spring Tools] or from https://start.spring.io[Spring Initializr]. First, you need to set up a running database server. Refer to your vendor documentation on how to configure your database for JDBC access. @@ -920,9 +920,6 @@ The following table describes the available events. For more details about the e | {javadoc-base}org/springframework/data/relational/core/mapping/event/AfterSaveEvent.html[`AfterSaveEvent`] | After an aggregate root gets saved (that is, inserted or updated). -| {javadoc-base}org/springframework/data/relational/core/mapping/event/AfterLoadEvent.html[`AfterLoadEvent`] -| After an aggregate root gets created from a database `ResultSet` and all its properties get set. _Note: This is deprecated. Use `AfterConvert` instead_ - | {javadoc-base}org/springframework/data/relational/core/mapping/event/AfterConvertEvent.html[`AfterConvertEvent`] | After an aggregate root gets created from a database `ResultSet` and all its properties get set. |===