Skip to content

Commit 6504177

Browse files
committed
Refer to "Spring Tools" instead of "Spring Tools for Eclipse"
Closes gh-35901
1 parent c112569 commit 6504177

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

framework-docs/modules/ROOT/pages/core/beans/dependencies/factory-properties-detailed.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ XML configuration:
5050

5151
The preceding XML is more succinct. However, typos are discovered at runtime rather than
5252
design time, unless you use an IDE (such as https://www.jetbrains.com/idea/[IntelliJ
53-
IDEA] or the {spring-site-tools}[Spring Tools for Eclipse])
54-
that supports automatic property completion when you create bean definitions. Such IDE
55-
assistance is highly recommended.
53+
IDEA] or the {spring-site-tools}[Spring Tools]) that supports automatic property
54+
completion when you create bean definitions. Such IDE assistance is highly recommended.
5655

5756
You can also configure a `java.util.Properties` instance, as follows:
5857

framework-docs/modules/ROOT/pages/core/beans/java/composing-configuration-classes.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -338,11 +338,11 @@ In the preceding scenario, using `@Autowired` works well and provides the desire
338338
modularity, but determining exactly where the autowired bean definitions are declared is
339339
still somewhat ambiguous. For example, as a developer looking at `ServiceConfig`, how do
340340
you know exactly where the `@Autowired AccountRepository` bean is declared? It is not
341-
explicit in the code, and this may be just fine. Remember that the
342-
{spring-site-tools}[Spring Tools for Eclipse] provides tooling that
343-
can render graphs showing how everything is wired, which may be all you need. Also,
344-
your Java IDE can easily find all declarations and uses of the `AccountRepository` type
345-
and quickly show you the location of `@Bean` methods that return that type.
341+
explicit in the code, and this may be just fine. Note that the
342+
{spring-site-tools}[Spring Tools] IDE support provides tooling that can render graphs
343+
showing how everything is wired, which may be all you need. Also, your Java IDE can
344+
easily find all declarations and uses of the `AccountRepository` type and quickly show
345+
you the location of `@Bean` methods that return that type.
346346

347347
In cases where this ambiguity is not acceptable and you wish to have direct navigation
348348
from within your IDE from one `@Configuration` class to another, consider autowiring the

framework-docs/modules/ROOT/pages/core/expressions.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ similar to the https://jakarta.ee/specifications/expression-language/[Jakarta Ex
77
Language] but offers additional features, most notably method invocation and basic string
88
templating functionality.
99

10-
While there are several other Java expression languages available -- OGNL, MVEL, and JBoss
11-
EL, to name a few -- the Spring Expression Language was created to provide the Spring
12-
community with a single well supported expression language that can be used across all
13-
the products in the Spring portfolio. Its language features are driven by the
14-
requirements of the projects in the Spring portfolio, including tooling requirements
15-
for code completion support within the {spring-site-tools}[Spring Tools for Eclipse].
16-
That said, SpEL is based on a technology-agnostic API that lets other expression language
17-
implementations be integrated, should the need arise.
10+
While there are several other Java expression languages available -- OGNL, MVEL, and
11+
JBoss EL, to name a few -- the Spring Expression Language was created to provide the
12+
Spring community with a single well supported expression language that can be used across
13+
all the products in the Spring portfolio. Its language features are driven by the
14+
requirements of the projects in the Spring portfolio, including tooling requirements for
15+
code completion within the {spring-site-tools}[Spring Tools] IDE support. That said, SpEL
16+
is based on a technology-agnostic API that lets other expression language implementations
17+
be integrated, should the need arise.
1818

1919
While SpEL serves as the foundation for expression evaluation within the Spring
2020
portfolio, it is not directly tied to Spring and can be used independently. To

0 commit comments

Comments
 (0)