File tree 3 files changed +6
-6
lines changed
spring-context/src/main/java/org/springframework/context/annotation
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 120
120
*
121
121
* Externalized values may be looked up by injecting the Spring
122
122
* {@link org.springframework.core.env.Environment} into a {@code @Configuration}
123
- * class the usual (e.g. using the {@code @Autowired} annotation):
123
+ * class as usual (e.g. using the {@code @Autowired} annotation):
124
124
*
125
125
* <pre class="code">
126
126
* @Configuration
138
138
*
139
139
* Properties resolved through the {@code Environment} reside in one or more "property
140
140
* source" objects, and {@code @Configuration} classes may contribute property sources to
141
- * the {@code Environment} object using
142
- * the {@link org.springframework.core.env.PropertySources @PropertySources} annotation:
141
+ * the {@code Environment} object using the {@link PropertySource @PropertySource}
142
+ * annotation:
143
143
*
144
144
* <pre class="code">
145
145
* @Configuration
Original file line number Diff line number Diff line change @@ -2386,7 +2386,7 @@ configured locally as depicted in the following example.
2386
2386
----
2387
2387
2388
2388
The specified `WorkManager` may also point to an environment-specific thread pool -
2389
- typically through `SimpleTaskWorkManager's` "asyncTaskExecutor" property. Consider
2389
+ typically through `` SimpleTaskWorkManager``'s "asyncTaskExecutor" property. Consider
2390
2390
defining a shared thread pool for all your `ResourceAdapter` instances if you happen to
2391
2391
use multiple adapters.
2392
2392
Original file line number Diff line number Diff line change @@ -2598,8 +2598,8 @@ You can use `ResourceUrlProvider` to rewrite URLs and apply the full chain of re
2598
2598
transformers -- e.g. to insert versions. The WebFlux config provides a `ResourceUrlProvider`
2599
2599
so it can be injected into others.
2600
2600
2601
- Unlike Spring MVC at present in WebFlux there is no way to transparely rewrite static
2602
- resource URLs since the are no view technologies that can make use of a non-blocking chain
2601
+ Unlike Spring MVC at present in WebFlux there is no way to transparently rewrite static
2602
+ resource URLs since there are no view technologies that can make use of a non-blocking chain
2603
2603
of resolvers and transformers (e.g. resources on Amazon S3). When serving only local
2604
2604
resources the workaround is to use `ResourceUrlProvider` directly (e.g. through a custom
2605
2605
tag) and block for 0 seconds.
You can’t perform that action at this time.
0 commit comments