Rossen Stoyanchev
2e07f9ab33
DefaultWebClient exposes full URI template as request attribute
...
Closes gh-30027
2023-12-07 12:16:22 +00:00
rstoyanchev
dd23b1d156
Add mappedHandler Predicate to AbstractHandlerExceptionResolver
...
Closes gh-26772
2023-12-07 12:16:22 +00:00
rstoyanchev
753409083d
Add urlDecode property to ServletCookieValueMethodArgumentResolver
...
Closes gh-26989
2023-12-07 12:16:22 +00:00
Stéphane Nicoll
e36d035f58
Remove leftovers
...
See gh-31690
2023-12-07 10:59:01 +01:00
Sam Brannen
302cdeeee6
Clean up warnings in JdbcTransactionManagerTests
2023-12-06 21:35:02 +01:00
Brian Clozel
61dd9fce73
Revert ValidationMode.CALLBACK on JPA bootstrap
...
In gh-30549 we applied changes to the `DefaultPersistenceUnitManager` to
use the `ValidationMode.CALLBACK` to better detect invalid validation
setup and enforce bootstrap failures in those cases.
Unfortunately, doing so disables the detection of validation annotation
on entities during the schema creation phase. This is a known Hibernate
issue. This commit reverts this change until HHH-12287 is fixed.
Fixes gh-31726
2023-12-06 18:34:42 +01:00
Sam Brannen
7a221eb581
Update Javadoc for @ComponentScan regarding local overrides
...
See gh-31704
2023-12-06 18:00:37 +01:00
Sam Brannen
2e5d1daeff
Polishing
2023-12-06 17:59:40 +01:00
Sam Brannen
bf6cb7cd89
Delete manually crafted section summary for Java-based Container Config
...
Closes gh-31777
2023-12-06 17:40:12 +01:00
Sam Brannen
2c053b34f0
Delete manually crafted section summary for the SpEL Language Reference
...
Closes gh-31776
2023-12-06 17:27:35 +01:00
Sam Brannen
438c3818cc
Replace System.getProperties().remove(x) with System.clearProperty(x)
...
This commit migrates to the not-so-new System.clearProperty() method
introduced in Java 1.5.
2023-12-06 17:11:46 +01:00
Sam Brannen
f14b122c9c
Fix #this and #root variable examples in SpEL documentation
...
This commit actually introduces a new example for #root variable usage,
which was previously missing.
Closes gh-31770
2023-12-06 16:54:03 +01:00
Sam Brannen
9f305bfaab
Polish SpEL examples and tests
2023-12-06 16:54:03 +01:00
Sébastien Deleuze
d410872e4f
Polish CookieIntegrationTests
2023-12-06 15:01:09 +01:00
Sébastien Deleuze
8fe2c780df
Support cookies with the same name with Reactor Netty
...
Ignore the related test with Undertow due to a bug in
their cookies handling.
Closes gh-28490
2023-12-06 15:01:09 +01:00
Stéphane Nicoll
b53ffa3855
Merge pull request #31700 from quaff
...
* pr/31700:
Polish contribution
Add support for location patterns in ResourceArrayPropertyEditor
Closes gh-31700
2023-12-06 15:00:30 +01:00
Stéphane Nicoll
25537938d6
Polish contribution
...
See gh-31700
2023-12-06 15:00:14 +01:00
Yanming Zhou
9704b809b1
Add support for location patterns in ResourceArrayPropertyEditor
...
This commit adds support for comma delimited location patterns in
ResourceArrayPropertyEditor.
See gh-31700
2023-12-06 15:00:14 +01:00
Arjen Poutsma
0e6c17f518
Process tokens after each feed in Jackson2Tokenizer
...
This commit ensures that we process after each fed buffer in
Jackson2Tokenizer, instead of after all fed buffers.
Closes gh-31747
2023-12-06 14:31:05 +01:00
Sam Brannen
1afea0b144
Fix and polish Javadoc for MimeTypeUtils
2023-12-06 14:30:16 +01:00
Johnny Lim
7b95bd72f7
Fix condition for "Too many elements" in MimeTypeUtils.sortBySpecificity()
...
See gh-31254
Closes gh-31769
2023-12-06 14:09:53 +01:00
Sam Brannen
fdcea58a53
Polishing
2023-12-06 12:36:04 +01:00
Arjen Poutsma
ef4ffa0005
Support empty part in DefaultPartHttpMessageReader
...
This commit fixes a bug in DefaultPartHttpMessageReader's
MultipartParser, due to which the last token in a part window was not
properly indicated.
Closes gh-30953
2023-12-06 12:21:37 +01:00
Sébastien Deleuze
2e3d13331a
Document `@ModelAttribute` usage with native images
...
Closes gh-31765
2023-12-06 12:13:33 +01:00
Sam Brannen
448e753184
Honor classValuesAsString in getMergedRepeatableAnnotationAttributes()
...
Closes gh-31768
2023-12-06 12:09:39 +01:00
Sam Brannen
6b53f37030
Favor local @ComponentScan annotations over meta-annotations
...
Work performed in conjunction with gh-30941 resulted in a regression.
Specifically, prior to Spring Framework 6.1 a locally declared
@ComponentScan annotation took precedence over @ComponentScan
meta-annotations, which allowed "local" configuration to override
"meta-present" configuration.
This commit modifies the @ComponentScan search algorithm so that
locally declared @ComponentScan annotations are once again favored
over @ComponentScan meta-annotations (and, indirectly, composed
annotations).
See gh-30941 Closes gh-31704
2023-12-06 11:40:25 +01:00
Yanming Zhou
afcd03bddc
Replace assertThat(x.isEmpty()).isTrue() with assertThat(x).isEmpty()
...
Search for : assertThat\((.+).isEmpty\(\)\).isTrue\(\)
Replace with : assertThat($1).isEmpty()
Search for : assertThat\((.+).isEmpty\(\)\).isFalse\(\)
Replace with : assertThat($1).isNotEmpty()
Closes gh-31758
2023-12-06 10:04:56 +01:00
Yanming Zhou
7b16ef90f1
Replace assertThat(x.equals(y)) with assertThat(x).isEqualTo(y)
...
Search for : assertThat\((.+)\.equals\((\w+)\)\)\.isTrue\(\)
Replace with : assertThat($1).isEqualTo($2)
Search for : assertThat\((.+)\.equals\((\w+)\)\)\.isFalse\(\)
Replace with : assertThat($1).isNotEqualTo($2)
Closes gh-31763
2023-12-06 09:50:15 +01:00
Yanming Zhou
e2852e7355
Replace assertThat(x.contains(y)).isTrue() with assertThat(x).contains(y)
...
Search for : assertThat\((.+)\.contains\((.+)\)\)\.isTrue\(\)
Replace with : assertThat($1).contains($2)
Search for : assertThat\((.+)\.contains\((.+)\)\)\.isFalse\(\)
Replace with : assertThat($1).doesNotContain($2)
Closes gh-31762
2023-12-06 09:48:49 +01:00
Yanming Zhou
1a63257b12
Add missing @Test
...
Closes gh-31761
2023-12-06 09:48:08 +01:00
Yanming Zhou
66e405525b
Replace assertThat(x instanceof y).isTrue() with assertThat(x).isInstanceOf(y.class)
...
Search for : assertThat\((.+) instanceof (\w+)\)\.isTrue\(\)
Replace with : assertThat($1).isInstanceOf($2.class)
Search for : assertThat\((.+) instanceof (\w+)\)\.isFalse\(\)
Replace with : assertThat($1).isNotInstanceOf($2.class)
Closes gh-31760
2023-12-06 09:46:44 +01:00
Yanming Zhou
59815cefce
Replace assertThat(x.get(i)). with assertThat(x).element(i).
...
Search for : assertThat\((.+)\.get\((\d+)\)\)\.
Replace with : assertThat($1).element($2).
Closes gh-31759
2023-12-06 09:43:59 +01:00
Yanming Zhou
785ad399e9
Replace assertThat(x.iterator().next()) with assertThat(x).element(0)
...
Search for : assertThat\((.+).iterator\(\).next\(\)\)
Replace with : assertThat($1).element(0)
2023-12-06 10:52:39 +08:00
Sébastien Deleuze
3f9a809c32
Improve `@RegisterReflectionForBinding` for enums
...
Closes gh-31570
2023-12-05 16:53:51 +01:00
Sam Brannen
c74d60b9fe
Polishing
2023-12-05 16:14:13 +01:00
Sam Brannen
db48813181
Polish contribution
...
See gh-31757
2023-12-05 16:14:13 +01:00
HyeongMokJeong
a596c0e226
Introduce overloaded MockPart constructor that accepts the Content-Type
...
Closes gh-31757
2023-12-05 15:55:33 +01:00
Sam Brannen
462ef95904
Fix typo in Javadoc
2023-12-05 13:05:54 +01:00
Arjen Poutsma
52d4b83dba
Partially revert RequestPredicates attribute handling
...
This commit partially reverts 39786e4790
and c5c843696b
, as the approach taken did
not take into account request predicates that query request attributes,
including path variables.
Closes gh-31732
2023-12-05 12:30:15 +01:00
Sam Brannen
aa347e5fe6
Polish MutablePropertyValuesTests
2023-12-05 11:43:57 +01:00
Sam Brannen
ceba4162bb
Replace assertThat(!x).isTrue() with assertThat(x).isFalse()
...
Search for : assertThat\(!(.+)\).isTrue\(\)
Replace with : assertThat(\1).isFalse()
2023-12-05 11:41:57 +01:00
Stéphane Nicoll
21560bccd3
Merge pull request #31752 from quaff
...
* pr/31752:
Polish "Use idiomatic AssertJ map assertions"
Use idiomatic AssertJ map assertions
Closes gh-31752
2023-12-05 10:41:09 +01:00
Stéphane Nicoll
1da40b84e7
Polish "Use idiomatic AssertJ map assertions"
...
See gh-31752
2023-12-05 10:39:33 +01:00
Yanming Zhou
6f11716b6f
Use idiomatic AssertJ map assertions
...
See gh-31752
2023-12-05 10:01:38 +01:00
Juergen Hoeller
47fe61ef79
Introduce lazyTransactionalConnections flag on TransactionAwareDataSourceProxy
...
Includes revision of JDBC transaction tests.
Closes gh-29423
2023-12-04 18:24:30 +01:00
Juergen Hoeller
8a82da43c9
Defensively wrap fixed-delay task on scheduler thread
...
Closes gh-31749
2023-12-04 18:20:44 +01:00
Sam Brannen
cb60f74556
Stop referring to JDO PersistenceManager in comments
2023-12-04 16:50:53 +01:00
Sam Brannen
62b3d7a963
Update copyright headers
2023-12-04 16:47:25 +01:00
Sam Brannen
b69e5acfe3
Revert use of yield in switch expressions due to Eclipse compiler error
...
See gh-31531
2023-12-04 16:47:25 +01:00
Sam Brannen
d71853f105
Polish contribution
...
See gh-31531
2023-12-04 16:47:25 +01:00