From 452257eb96eb7fbac6d268b6a1d3743eb7194b3b Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 13 Dec 2025 17:10:06 +0100 Subject: [PATCH] Revise contribution See gh-36022 --- .../pages/core/expressions/language-ref/variables.adoc | 2 +- .../modules/ROOT/pages/data-access/jdbc/simple.adoc | 10 +++++----- .../modules/ROOT/pages/integration/aot-cache.adoc | 2 +- .../modules/ROOT/pages/integration/appendix.adoc | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/framework-docs/modules/ROOT/pages/core/expressions/language-ref/variables.adoc b/framework-docs/modules/ROOT/pages/core/expressions/language-ref/variables.adoc index c8f4b3cad4a..9faaee04624 100644 --- a/framework-docs/modules/ROOT/pages/core/expressions/language-ref/variables.adoc +++ b/framework-docs/modules/ROOT/pages/core/expressions/language-ref/variables.adoc @@ -6,7 +6,7 @@ are set by using the `setVariable()` method in `EvaluationContext` implementatio [NOTE] ==== -Variable names must be begun with a letter (as defined below), an underscore, or a dollar +Variable names must begin with a letter (as defined below), an underscore, or a dollar sign. Variable names must be composed of one or more of the following supported types of diff --git a/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc b/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc index 9f24758f53d..d649cec7672 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc @@ -349,11 +349,11 @@ parameters return the data read from the table. You can declare `SimpleJdbcCall` in a manner similar to declaring `SimpleJdbcInsert`. You should instantiate and configure the class in the initialization method of your data-access -layer. Compared to the `StoredProcedure` class, you need not create a subclass -and you need not declare parameters that can be looked up in the database metadata. -The following example of a `SimpleJdbcCall` configuration uses the preceding stored -procedure (the only configuration option, in addition to the `DataSource`, is the name -of the stored procedure): +layer. In contrast to the `StoredProcedure` class, you do not need to create a subclass, +and you do not need to declare parameters that can be looked up in the database metadata. +The following `SimpleJdbcCall` configuration example uses the preceding stored procedure. +The only configuration option (other than the `DataSource`) is the name of the stored +procedure. [tabs] ====== diff --git a/framework-docs/modules/ROOT/pages/integration/aot-cache.adoc b/framework-docs/modules/ROOT/pages/integration/aot-cache.adoc index aae7a1ba66c..a8ceb9735f2 100644 --- a/framework-docs/modules/ROOT/pages/integration/aot-cache.adoc +++ b/framework-docs/modules/ROOT/pages/integration/aot-cache.adoc @@ -7,7 +7,7 @@ The ahead-of-time cache is a JVM feature introduced in Java 24 via the https://openjdk.org/jeps/483[JEP 483] that can help reduce the startup time and memory footprint of Java applications. AOT cache is a natural evolution of https://docs.oracle.com/en/java/javase/17/vm/class-data-sharing.html[Class Data Sharing (CDS)]. Spring Framework supports both CDS and AOT cache, and it is recommended that you use the -later if available in the JVM version you are using (Java 24+). +latter if available in the JVM version you are using (Java 24+). To use this feature, an AOT cache should be created for the particular classpath of the application. It is possible to create this cache on the deployed instance, or during a diff --git a/framework-docs/modules/ROOT/pages/integration/appendix.adoc b/framework-docs/modules/ROOT/pages/integration/appendix.adoc index 391232b7882..c00fd9a36b3 100644 --- a/framework-docs/modules/ROOT/pages/integration/appendix.adoc +++ b/framework-docs/modules/ROOT/pages/integration/appendix.adoc @@ -313,7 +313,7 @@ xref:integration/jmx/naming.adoc#jmx-context-mbeanexport[Configuring Annotation- === The `cache` Schema You can use the `cache` elements to enable support for Spring's `@CacheEvict`, `@CachePut`, -and `@Caching` annotations. It is also supports declarative XML-based caching. See +and `@Caching` annotations. The `cache` schema also supports declarative XML-based caching. See xref:integration/cache/annotations.adoc#cache-annotation-enable[Enabling Caching Annotations] and xref:integration/cache/declarative-xml.adoc[Declarative XML-based Caching] for details.