Browse Source

Fix link to "Resources" section in reference guide

Closes gh-33882
pull/34008/head
Sam Brannen 1 year ago
parent
commit
1e95332f62
  1. 5
      framework-docs/modules/ROOT/pages/core/beans/context-introduction.adoc

5
framework-docs/modules/ROOT/pages/core/beans/context-introduction.adoc

@ -883,11 +883,12 @@ e.g. for processing all events asynchronously and/or for handling listener excep @@ -883,11 +883,12 @@ e.g. for processing all events asynchronously and/or for handling listener excep
== Convenient Access to Low-level Resources
For optimal usage and understanding of application contexts, you should familiarize
yourself with Spring's `Resource` abstraction, as described in xref:web/webflux-webclient/client-builder.adoc#webflux-client-builder-reactor-resources[Resources].
yourself with Spring's `Resource` abstraction, as described in
xref:core/resources.adoc[Resources].
An application context is a `ResourceLoader`, which can be used to load `Resource` objects.
A `Resource` is essentially a more feature rich version of the JDK `java.net.URL` class.
In fact, the implementations of the `Resource` wrap an instance of `java.net.URL`, where
In fact, implementations of `Resource` wrap an instance of `java.net.URL`, where
appropriate. A `Resource` can obtain low-level resources from almost any location in a
transparent fashion, including from the classpath, a filesystem location, anywhere
describable with a standard URL, and some other variations. If the resource location

Loading…
Cancel
Save