File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1826,7 +1826,9 @@ constructor takes precedence over both `@TestConstructor` and the default mode.
1826
1826
=====
1827
1827
The default _test constructor autowire mode_ can be changed by setting the
1828
1828
`spring.test.constructor.autowire.mode` JVM system property to `all`. Alternatively, the
1829
- default mode may be changed via the `SpringProperties` mechanism.
1829
+ default mode may be set via the
1830
+ https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/core/SpringProperties.html[`SpringProperties`]
1831
+ mechanism.
1830
1832
1831
1833
If the `spring.test.constructor.autowire.mode` property is not set, test class
1832
1834
constructors will not be automatically autowired.
@@ -4381,8 +4383,9 @@ The size of the context cache is bounded with a default maximum size of 32. When
4381
4383
maximum size is reached, a least recently used (LRU) eviction policy is used to evict and
4382
4384
close stale contexts. You can configure the maximum size from the command line or a build
4383
4385
script by setting a JVM system property named `spring.test.context.cache.maxSize`. As an
4384
- alternative, you can set the same property programmatically by using the
4385
- `SpringProperties` API.
4386
+ alternative, you can set the same property via the
4387
+ https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/core/SpringProperties.html[`SpringProperties`]
4388
+ mechanism.
4386
4389
4387
4390
Since having a large number of application contexts loaded within a given test suite can
4388
4391
cause the suite to take an unnecessarily long time to run, it is often beneficial to
You can’t perform that action at this time.
0 commit comments