denisgalaybo
9526e39f88
Fix errors in reference manual
...
Closes gh-24008
5 years ago
Sam Brannen
d397baa559
Polish Javadoc for AutowiredAnnotationBeanPostProcessor
5 years ago
Juergen Hoeller
1607f1db0b
Fix Checkstyle nohttp violation
5 years ago
Juergen Hoeller
a43ae63f17
Upgrade to SLF4J 1.7.29, Jackson 2.10.1, WebJars Locator 0.43
5 years ago
Rossen Stoyanchev
9ec67bac82
Merge pull request #1885
...
Closes gh-1885
5 years ago
Rossen Stoyanchev
c33cb26a73
Polishing contribution
...
See gh-1885
5 years ago
Mark Hobson
46fe74d2f9
Preserve media type parameters when setting charset
...
Issue: SPR-17040
5 years ago
Rossen Stoyanchev
905e3c1f9f
Avoid indefinite wait in JettyWebSocketClient
...
Closes gh-23994
5 years ago
Juergen Hoeller
830f81210f
Revise getElementTypeDescriptor javadoc (no IllegalStateException)
...
Closes gh-23996
5 years ago
Sam Brannen
d38b07b450
Move JavaUtilLoggingConfigurer to web.reactive.fixtures package
5 years ago
Sébastien Deleuze
029e61f54a
Refine MethodParameter#isOptional Kotlin implementation
...
This commit adds support for Continuation parameter that is now
considered as an optional parameter since it is never provided by
the user.
It also simplifies and optimizes the implementation.
Closes gh-23991
5 years ago
Sam Brannen
7991066345
Fix classpath
5 years ago
Sam Brannen
89b3a9cef2
Introduce JavaUtilLoggingConfigurer to configure JUL for tests
5 years ago
Stephane Nicoll
1b7ef7fce5
Merge pull request #23995 from izeye
...
* pr/23995:
Polish CorsAbstractHandlerMappingTests
Closes gh-23995
5 years ago
Johnny Lim
56670ebec8
Polish CorsAbstractHandlerMappingTests
...
See gh-23995
5 years ago
Sam Brannen
8df3afd0b6
Polish contribution
...
See gh-23895
5 years ago
SchutzeHades
834ebc44f8
Fix inappropriate eager init.
5 years ago
Sam Brannen
8186b77b58
Polish contribution
...
See gh-23895
5 years ago
monosoul
a0e4ac39bf
Inverse condition to fix ISO-formatted Instant parsing
...
Prior to this commit, InstantFormatter was able to properly serialize
an Instant that is far in the future (or in the past), but it could not
properly deserialize it, because in such scenarios an ISO-formatted
Instant starts with a +/- sign.
This commit fixes this issue, while maintaining the previous contract,
and also introduces tests for InstantFormatter.
Closes gh-23895
5 years ago
Juergen Hoeller
3dc5e7b1d5
Avoid String concatenation for lookup in StaticMessageSource
...
Closes gh-22451
5 years ago
Sébastien Deleuze
6fa9871a70
Provide orNull extensions for WebFlux ServerRequest
...
Closes gh-23761
5 years ago
Juergen Hoeller
22211a01ce
Polishing
5 years ago
Juergen Hoeller
32532a88c1
Polishing
5 years ago
Juergen Hoeller
55011e7a0f
Note on injecting results from local @Bean methods (self references)
...
Closes gh-23934
5 years ago
Rossen Stoyanchev
2c1afca9c5
Reject null form data names
...
...or skip if there are no values either.
Closes gh-22372
5 years ago
Rossen Stoyanchev
f2b9264674
Remove Jetbrains annotations
5 years ago
Rossen Stoyanchev
e6a65804f5
Merge pull request #1956
...
Closes gh-1956
5 years ago
Rossen Stoyanchev
04aa3d05da
Refactor solution for respones error details
...
See gh-1956
5 years ago
jerzykrlk
91ec274b10
SPR-17130 http error details in the exception message
5 years ago
JohnGrib
8bb165e55c
Fix typo in EventSourceTransportHandler
...
Closes gh-23984
* 3a0f309e2c/spring-web/src/main/java/org/springframework/http/codec/ServerSentEvent.java (L24)
* 3a0f309e2c/spring-web/src/main/java/org/springframework/http/codec/ClientCodecConfigurer.java (L88)
* ef14d76d36/spring-web/src/main/java/org/springframework/http/codec/ServerCodecConfigurer.java (L94)
* 3a0f309e2c/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/handler/EventSourceTransportHandler.java (L33)
5 years ago
YuDongYing
4e5ae54417
Fix schemaZip Gradle task on MS Windows
...
Prior to this commit, the schemaZip Gradle task failed to find Spring
schema files on MS Windows due to path separators hard coded to forward
slashes that are not compatible with the Windows operating system.
Consequently, a full build failed on Windows since the distZip task was
not able to locate the zipped schema archive that the schemaZip task
failed to create.
This commit fixes this by updating the schemaZip task to search for
schema files using backslashes as well as forward slashes.
Closes gh-23933
5 years ago
Sébastien Deleuze
7646895fd4
Support Kotlin synthetic classes in MethodParameter and SpEL
...
Closes gh-23812
5 years ago
stsypanov
f2b3953d76
Use array.clone() instead of manual array creation
5 years ago
Juergen Hoeller
f61d728db9
Fallback Locale other than the system Locale through setDefaultLocale
...
Closes gh-23977
5 years ago
Rossen Stoyanchev
f4c847b723
MockHttpServletRequestBuilder sets content-length
...
Closes gh-23978
5 years ago
GungnirLaevatain
4bbf2d5785
polish
5 years ago
Rossen Stoyanchev
a0cdbf5153
Merge pull request #23980
...
Closes gh-23980
5 years ago
Rossen Stoyanchev
16c7a40c53
Minor refactoring
...
See gh-23296
5 years ago
Johannes Teklote
879b2df052
queryParam options for MockMVC requeusts
...
See gh-23296
5 years ago
Sam Brannen
a26d37b407
Polishing
5 years ago
Sam Brannen
a276c667d1
Polishing
5 years ago
Juergen Hoeller
9cc06454aa
Restore findAnnotation superclass traversal for java.lang annotations
...
Closes gh-23929
5 years ago
Rossen Stoyanchev
fac9ca891a
Fix copy-and-paste error in docs
5 years ago
Juergen Hoeller
c4ec6aea68
Fix Checkstyle violations
...
See gh-23784
5 years ago
Arjen Poutsma
a7a88371e7
Allow for decode method to return null in AbstractJackson2Decoder
...
Prior to this commit, the decoder did not allow for a null value
returned from the Jackson object reader.
Closes: gh-23935
5 years ago
Arjen Poutsma
789f6fc188
Add @Nullable annotation to decode method taking DataBuffer
...
Javadoc indicates the returned value can be null.
5 years ago
Rossen Stoyanchev
23ec6d243c
Merge pull request #2023
...
Closes gh-2023
5 years ago
Rossen Stoyanchev
347f16c8ac
Polishing
...
See gh-2023
5 years ago
Pat Turner
6db8306e46
XpathResultMatcher supports Hamcrest Matcher NodeList
...
Use when xpath result is XPathConstants.NODESET
5 years ago
Biju Kunjummen
5ee990e045
Use Function.identity
...
Closes gh-2024
5 years ago