From 3328762c6bc5f79c15b9cd2af82fb37058437531 Mon Sep 17 00:00:00 2001 From: Florian Habermann Date: Mon, 4 Nov 2024 15:24:11 +0100 Subject: [PATCH] Update spring-boot.adoc --- docs/modules/misc/pages/integrations/spring-boot.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/misc/pages/integrations/spring-boot.adoc b/docs/modules/misc/pages/integrations/spring-boot.adoc index bc7258af..5f708d38 100644 --- a/docs/modules/misc/pages/integrations/spring-boot.adoc +++ b/docs/modules/misc/pages/integrations/spring-boot.adoc @@ -291,14 +291,14 @@ Spring documentation: https://docs.spring.io/spring-boot/reference/using/devtool == Code Configuration Before Storage Creation -There are some use cases where it is necessary to configure storage before it is created. For this purpose, you can use the `StorageContextInitializer` to create a custom storage configuration in your application. +There are some use cases where it is necessary to configure the storage's context before it is created. For this purpose, you can use the `StorageContextInitializer` to create a custom storage configuration in your application. Example for configuring `LazyReferenceManager`: [source,java] ---- @Component -public class CustomStorageInitializerImpl implements CustomStorageInitializer +public class StorageContextInitializerImpl implements StorageContextInitializer { @Override public void initialize()