Juergen Hoeller
9dfef59af2
Construct StringWriter instances with appropriate initial size
...
Closes gh-25789
6 years ago
Sam Brannen
a6daed1b71
Fix example in Javadoc for Assert.notNull(object, messageSupplier)
...
Closes gh-25774
6 years ago
Rossen Stoyanchev
28df426798
Update AbstractDataBufferAllocatingTests
...
We are passing custom values to the constructor of PooledByteBufAllocator in
tests in order to turn of caching. This is based on:
https://github.com/netty/netty/issues/5275#issuecomment-220547057
Netty 4.1.52 has significant changes in PooledByteBufAllocator:
https://github.com/netty/netty/pull/10267
After the changes, our current value for maxOrder=2, which results in
chunkSize=16K, causes an assert failure in PoolChunk where the runSize
exceeds the chunkSize.
6 years ago
Spring Buildmaster
845cb715e7
Next Development Version
6 years ago
Juergen Hoeller
f010368a66
Polishing
6 years ago
Juergen Hoeller
3ec4538981
Upgrade to Checkstyle 8.36.1
6 years ago
Juergen Hoeller
3c84863271
Polishing
6 years ago
Juergen Hoeller
c2f6a98c90
Lenient handling of empty Content-Disposition filename
...
Closes gh-25769
6 years ago
Juergen Hoeller
49d65d5c41
Configurable filename encoding in MimeMessageHelper
...
Closes gh-25755
6 years ago
Rossen Stoyanchev
16d125ce76
Extend Content-Disposition "inline" to error responses
...
We don't expect a browser to save error responses to a file but we
extend this protection anyway since "inline" is only a suggestion
that shouldn't have any side effects.
6 years ago
Rossen Stoyanchev
dccc78146a
Expose defaultCharset in StringDecoder
...
Closes gh-25762
6 years ago
Rossen Stoyanchev
dde79a9b65
Upgrade to Reactor Dysprosium-SR12
...
Closes gh-25730
6 years ago
Rossen Stoyanchev
49356b2c0f
SimpleIdGenerator rolls over at Long.MAX_VALUE
...
Closes gh-25485
6 years ago
Rossen Stoyanchev
852718ec0e
Minor fix in PathResourceResolverTests
...
Closes gh-25671
6 years ago
Arjen Poutsma
07d2c08f48
Do not tokenize Forward header value
...
This commit remove the tokenization previously used in
UriComponentsBuilder#adaptFromForwardedHeaders, in order to support
Forwarded headers that have multiple, comma-separated 'for' elements.
Closes gh-25737
6 years ago
Juergen Hoeller
ed3b7cd10f
Upgrade to HSQLDB 2.5.1 and Woodstox 6.2.1
6 years ago
Juergen Hoeller
4d1d60ac42
Check log level before delegating Supplier-based message to target Log
...
Closes gh-25741
6 years ago
Juergen Hoeller
c6cc6705ef
FileUrlResource.isWritable() exclusively relies on getFile() implementation
...
Closes gh-25584
6 years ago
Juergen Hoeller
ae1d15c8f4
Declare protected getCharset method as non-static
...
See gh-25509
6 years ago
Rossen Stoyanchev
d616c6632d
Remove session on 4xx response from WebSocket handshake
...
Closes gh-25608
6 years ago
Rossen Stoyanchev
94c91c9e9c
Explain how to provide serialization view programmatically
...
Closes gh-25596
6 years ago
Rossen Stoyanchev
b6ff12d2f5
Expose protected method in AbstractJackson2HttpMessageConverter
...
Closes gh-25509
6 years ago
Rossen Stoyanchev
b1d84067cd
UriComponentsBuilder Javadoc update
...
Closes gh-25604
6 years ago
Rossen Stoyanchev
c19fc9d53f
Switch to Reactor Dysprosium snapshots
...
See gh-25730
6 years ago
Rossen Stoyanchev
899761f0a8
Avoid unnecessary parsing of path params
...
See gh-25690
6 years ago
Rossen Stoyanchev
f88759c3c9
Shared read-only instances of UrlPathHelper
...
UrlPathHelper is often created and used without customizations or with
the same customizations. This commit introduces re-usable, instances.
Effectively a backport of commit 23233c.
See gh-25690
6 years ago
Juergen Hoeller
4f0f29880f
Upgrade to AssertJ 3.17.2 and Undertow 2.0.31
6 years ago
Juergen Hoeller
4b211fb18c
Javadoc refinements
6 years ago
Juergen Hoeller
e797398b10
CallParameterMetaData detects function return parameter specifically
...
Closes gh-25588
6 years ago
Juergen Hoeller
613b05d814
Properties loading with ignoreResourceNotFound covers SocketException as well
...
Closes gh-25717
6 years ago
Juergen Hoeller
939c76c4a5
Revise documentation notes on getParameterType performance issues
...
See gh-25679
6 years ago
Juergen Hoeller
40bf83c9e5
Restore original 4.x behavior for initialization of function return name
...
Closes gh-25707
6 years ago
Juergen Hoeller
c368ce8223
Fix SpEL generated code for default method invocation
...
Closes gh-25706
6 years ago
Juergen Hoeller
670b9fd60b
Retry SQLErrorCodesFactory retrieval if DatabaseMetaData access failed
...
Includes deprecation of JdbcUtils.extractDatabaseMetaData(DataSource, String) in favor of the now generified version of extractDatabaseMetaData(DataSource, DatabaseMetaDataCallback).
Closes gh-25681
Closes gh-25686
6 years ago
Stephane Nicoll
c2363a6ef9
Make DataSize serializable
...
Closes gh-25675
6 years ago
Stephane Nicoll
cdfdc340d2
Log cache hit and cache miss for synchronized access
...
Closes gh-25248
6 years ago
Juergen Hoeller
7bd6b8d279
Upgrade to Checkstyle 8.36
6 years ago
Juergen Hoeller
141470ff58
Explicit nullability declarations for getTarget() implementations
6 years ago
Juergen Hoeller
d62202f464
Polishing
6 years ago
Juergen Hoeller
bcdc2503fa
Avoid repeated calls to getPathWithinApplication from getLookupPathForRequest
...
Closes gh-25669
6 years ago
Juergen Hoeller
3a73533b1c
Upgrade Gradle plugins to latest patch releases
6 years ago
Juergen Hoeller
d8c420ab75
Avoid full singleton lock for getSingleton(beanName, false)
...
Closes gh-25667
6 years ago
Juergen Hoeller
97d84d9ab8
Upgrade to AssertJ 3.17.1
6 years ago
Juergen Hoeller
ae4160e131
Avoid direct use of non-exported XStream CompositeClassLoader class
...
Closes gh-25662
6 years ago
Juergen Hoeller
bb9e79daa7
Polishing
6 years ago
Juergen Hoeller
6d9d4157ef
Specifically detect Joda-Time 2.x
...
Closes gh-25655
6 years ago
Juergen Hoeller
387eddcf75
Upgrade to Hibernate ORM 5.4.21, HtmlUnit 2.43, AspectJ 1.9.6
6 years ago
Juergen Hoeller
71e70aed14
Polishing
6 years ago
Juergen Hoeller
a8b295c516
Consistent javadoc for ParseState and its entry classes
6 years ago
Juergen Hoeller
cf2e0c7959
Selected use of ArrayList instead of LinkedList in common places
...
See gh-25652
6 years ago