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
Juergen Hoeller
990bfd8772
Support for new MySQL 8 error code 3572
...
Closes gh-23972
5 years ago
Juergen Hoeller
6d47e1e0a1
Fix getHeaderPredicate visibility to be declared as protected
...
Closes gh-23976
5 years ago
Steven Schlansker
fc55e66d50
ApplicationListenerMethodAdapter: gracefully handle beans which are actually NullBean
...
Currently, if you have an optional event listener (via a @Bean method returning `null`)
this causes the event multicaster to explode violently. Now, we just safely skip it.
5 years ago
GungnirLaevatain
d494621ee3
avoid store all bean name
5 years ago
stsypanov
92efe95069
Simplify ConstructorResolver: do not sort intermediate array
5 years ago
Rossen Stoyanchev
51b43496f4
Update docs for ASYNC dispatch config
...
Closes gh-23958
5 years ago
Sam Brannen
d03ab79531
Polish contribution
...
See gh-23970
5 years ago
Andy Wilkinson
f7bc8c8268
Tidy up classpath pollution caused by resource creation in the tests
...
Previously, spring-webmvc and spring-webflux both contained tests
that would create gzipped files, write them to the filesystem
alongside the project's compiled test classes, and configure them to
be deleted on JVM exit. The output location placed the files on the
classpath, polluting it for every subsequent test that used the same
ClassLoader. The test-sources plugin combined with Gradle's use of
worker JVMs, broadens the scope of this pollution to other, downstream
projects in the same build. For example, the tests for
spring-websocket will have a different classpath depending on whether
or not the tests for spring-webmvc have already been run on the same
worker as part of the current build.
This commit updates the spring-webmvc and spring-webflux modules to
introduce a new JUnit Jupiter extension, GzipSupport. This extension
allows gzipped files to be created via an injectable GzippedFiles
class and automatically deletes each created file in an after-each
callback. This ensures that a gzipped file only exists on the
classpath for the duration of the test that needs it, avoiding the
pollution of the classpath of any subsequent tests.
Closes gh-23970
5 years ago
Andy Wilkinson
b5fb28284e
Upgrade to Shadow Plugin 5.2.0
...
Closes gh-23971
5 years ago
Rossen Stoyanchev
ffe69a51e1
Javadoc update for content negotiation
...
Closes gh-23409
5 years ago
Rossen Stoyanchev
1403603b05
Doc update for ForwardedHeaderFilter
...
Closes gh-23954
5 years ago
Sam Brannen
64dfa462a6
Fix Javadoc for SmartLifecycle.DEFAULT_PHASE regarding ordering
...
Closes gh-23956
5 years ago
Sam Brannen
29185505b1
Polishing
5 years ago
Sam Brannen
cb9d27b9b8
Polish contribution and fix build
...
See gh-1954
5 years ago
Rob Tompkins
cfb7777a07
Exception response for MockRestServiceServer
...
Closes gh-1954
5 years ago
Muhammad Hewedy
f638bfc6a9
Fix status code in webmvc.adoc
...
Closes gh-22396
5 years ago
Rossen Stoyanchev
b98d8ef06f
Merge pull request #22715
...
Closes gh-22715
5 years ago
Rossen Stoyanchev
32f82c0ed0
Polishing
5 years ago
Ilja
08f1cb454a
Allow sending headers with the disconnect frame
5 years ago
denisgalaybo
b0b6423714
Fixed error in webflux.adoc
...
Closes gh-23957
5 years ago
Rossen Stoyanchev
fd453a0753
Merge branch 'pr/23417'
...
Closes gh-23417
5 years ago
Rossen Stoyanchev
b2b02ad7a1
Polishing
5 years ago
Ilya Lukyanovich
801cca8cf8
Preserve ErrorMessage#getOriginalMessage()
...
See gh-23417
5 years ago
Tomo Suzuki
21d390a018
Replacing netty-all with specific dependencies
5 years ago
Qimiao Chen
9b8da04e64
Delete unnecessary variable assignment
...
Closes gh-23955
5 years ago
Rossen Stoyanchev
a6dd63f9ca
Merge pull request #23938
5 years ago
Rossen Stoyanchev
0e1a237139
Polishing
5 years ago
Johnny Lim
91f5f42d13
Add tests for PrincipalMethodArgumentResolver
5 years ago
Rossen Stoyanchev
c7b9988033
Merge pull request #23855
5 years ago
Rossen Stoyanchev
1261e64465
Minor refactoring
...
Apply default Accept header for HttpUrlConnection only.
See gh-23855
5 years ago
Lorenzo Torracchi
afae8c3045
Avoid default "Accept" from HttpUrlConnection
...
Closes gh-23740
5 years ago
Juergen Hoeller
d394c7a5c0
Upgrade to RxJava 2.2.14, OkHttp 3.14.4, JRuby 9.2.9, Rhino 1.7.11, Awaitility 3.1.6
5 years ago