From e1b0296f9e6535621c425c174833ab0dd9ae4ca1 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Fri, 28 Feb 2020 17:15:56 +0000 Subject: [PATCH] Polishing contribution See gh-24589 --- src/docs/asciidoc/core/core-beans.adoc | 8 ++++---- src/docs/asciidoc/core/core-expressions.adoc | 4 ++-- src/docs/asciidoc/testing.adoc | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/docs/asciidoc/core/core-beans.adoc b/src/docs/asciidoc/core/core-beans.adoc index d7a492887f5..2d4716be567 100644 --- a/src/docs/asciidoc/core/core-beans.adoc +++ b/src/docs/asciidoc/core/core-beans.adoc @@ -74,7 +74,7 @@ In most application scenarios, explicit user code is not required to instantiate more instances of a Spring IoC container. For example, in a web application scenario, a simple eight (or so) lines of boilerplate web descriptor XML in the `web.xml` file of the application typically suffices (see <>). If you use the -https://spring.io/tools[Spring Tool Suite] (an Eclipse-powered development +https://spring.io/tools[Spring Tools for Eclipse] (an Eclipse-powered development environment), you can easily create this boilerplate configuration with a few mouse clicks or keystrokes. @@ -1481,7 +1481,7 @@ XML configuration: The preceding XML is more succinct. However, typos are discovered at runtime rather than design time, unless you use an IDE (such as https://www.jetbrains.com/idea/[IntelliJ -IDEA] or the https://spring.io/tools[Spring Tool Suite]) +IDEA] or the https://spring.io/tools[Spring Tools for Eclipse]) that supports automatic property completion when you create bean definitions. Such IDE assistance is highly recommended. @@ -4649,7 +4649,7 @@ No matter the choice, Spring can accommodate both styles and even mix them toget It is worth pointing out that through its <> option, Spring lets annotations be used in a non-invasive way, without touching the target components source code and that, in terms of tooling, all configuration styles are supported by the -https://spring.io/tools[Spring Tool Suite]. +https://spring.io/tools[Spring Tools for Eclipse]. **** An alternative to XML setup is provided by annotation-based configuration, which relies on @@ -8985,7 +8985,7 @@ modularity, but determining exactly where the autowired bean definitions are dec still somewhat ambiguous. For example, as a developer looking at `ServiceConfig`, how do you know exactly where the `@Autowired AccountRepository` bean is declared? It is not explicit in the code, and this may be just fine. Remember that the -https://spring.io/tools[Spring Tool Suite] provides tooling that +https://spring.io/tools[Spring Tools for Eclipse] provides tooling that can render graphs showing how everything is wired, which may be all you need. Also, your Java IDE can easily find all declarations and uses of the `AccountRepository` type and quickly show you the location of `@Bean` methods that return that type. diff --git a/src/docs/asciidoc/core/core-expressions.adoc b/src/docs/asciidoc/core/core-expressions.adoc index 5a833d20764..b6d68cbf0b2 100644 --- a/src/docs/asciidoc/core/core-expressions.adoc +++ b/src/docs/asciidoc/core/core-expressions.adoc @@ -11,8 +11,8 @@ EL, to name a few -- the Spring Expression Language was created to provide the S community with a single well supported expression language that can be used across all the products in the Spring portfolio. Its language features are driven by the requirements of the projects in the Spring portfolio, including tooling requirements -for code completion support within the Eclipse-based Spring Tool Suite. That said, -SpEL is based on a technology-agnostic API that lets other expression language +for code completion support within the https://spring.io/tools[Spring Tools for Eclipse]. +That said, SpEL is based on a technology-agnostic API that lets other expression language implementations be integrated, should the need arise. While SpEL serves as the foundation for expression evaluation within the Spring diff --git a/src/docs/asciidoc/testing.adoc b/src/docs/asciidoc/testing.adoc index eddf6ce462b..0b51a0cd874 100644 --- a/src/docs/asciidoc/testing.adoc +++ b/src/docs/asciidoc/testing.adoc @@ -6468,7 +6468,7 @@ The fluent API in the example from the < Editor -> Content Assist -> Favorites. Doing so lets you use content assist after typing the first character of the static method name. Other IDEs (such as IntelliJ) may not require any additional configuration. Check the