Juergen Hoeller
05f1ea8515
Merge branch '5.1.x'
6 years ago
Juergen Hoeller
d0033f12d0
ApplicationListenerMethodAdapter uses target method for order lookup
...
Fixes #22307
6 years ago
Juergen Hoeller
85ec9b9df2
Avoid Class.getPackage() in favor of plain Class.getName() checks
...
Fixes #22306
6 years ago
Marten Deinum
6bdf2c2685
Upgrade to Commons-Fileupload 1.4
6 years ago
Arjen Poutsma
6004be9d31
Merge branch '5.1.x'
6 years ago
Arjen Poutsma
4732f83d70
Fix Java 9 Build
...
Fix Java 9 build by replacing deprecated method.
6 years ago
Juergen Hoeller
160ecdf956
Merge branch '5.1.x'
6 years ago
Juergen Hoeller
7cc700435b
HandlerMethod skips interface parameter introspection for return value
...
Fixes #22303
6 years ago
Juergen Hoeller
493e9c1ff0
Consistent upgrade to Rome 1.12 and WebJars Locator 0.36
6 years ago
Juergen Hoeller
8bed7d9bb0
Upgrade to Hibernate ORM 5.4.1
...
Includes EclipseLink 2.7.4.
Fixes #22049
6 years ago
Juergen Hoeller
b07b10de8c
Upgrade to Kotlin 1.3.20
...
Includes RxJava 2.2.6, Netty 4.1.33, Undertow 2.0.17.
Fixes #20945
6 years ago
Sam Brannen
83d06b8f4e
Merge branch '5.1.x'
6 years ago
Sam Brannen
edadb9efb6
Remove obsolete PetClinic Example section of Testing chapter
...
Issue: #22288
6 years ago
Arjen Poutsma
a5cef3845c
Improve message for HttpStatusCodeException with empty status text
...
This commit improves the message for HttpStatusCodeException so that it
defaults to the HttpStatus reason phrase if a status text is not
provided.
This commit also fixes SimpleClientHttpResponse so that it does not
return null for getStatusText().
Fixed #22162
6 years ago
Rossen Stoyanchev
155ef5fd77
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
810b615471
Correct issus in Spring MVC section
...
Fixes #22282
6 years ago
Rossen Stoyanchev
51f9e0aaca
Typo in webmvc.adoc
6 years ago
Brian Clozel
46c0366594
Merge branch '5.1.x'
6 years ago
Brian Clozel
d6aa589c50
Wrap DecodingException in DefaultServerRequest
...
Prior to this commit, Spring WebFlux function would let
`DecodingException` thrown by codecs bubble up to the web handler level.
Since this exception is not handled by default there, the response would
be turned into a HTTP 500 status.
In the annotation model, `ArgumentResolver` implementations wrap this
exception with a `ServerWebInputException`, which itself extends
`ResponseStatusException`. The latter is supported by the error handling
infrastructure as a HTTP 400 response.
This commit ensures that `DecodingException` instances are properly
wrapped in `ServerWebInputException` at the `ServerRequest` level
directly, thus supporting all setup modes ("standalone" and through the
`DispatcherHandler`).
Fixes #22290
6 years ago
Sebastien Deleuze
81ec1d8284
Merge branch '5.1.x'
6 years ago
Sebastien Deleuze
fc6cff53bb
Clarify documentation about JSON Views
...
This commit intends to clarify the documentation by avoiding confusion
between @JsonView and Spring MVC JSON views.
Fixes #22280
6 years ago
Rossen Stoyanchev
f6c16815b4
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
20f4022e7b
Correctly truncate logging of response body
...
Fixes #22287
6 years ago
Rossen Stoyanchev
020c537c03
Add note to CorsFilter section
...
Fixes #19841
6 years ago
Stephane Nicoll
bd3d7dbc0c
Merge pull request #22283 from izeye
...
* pr/22283:
Polish AutowireUtils.EXECUTABLE_COMPARATOR
6 years ago
Johnny Lim
963cc09c2e
Polish AutowireUtils.EXECUTABLE_COMPARATOR
...
Closes gh-22283
6 years ago
Rossen Stoyanchev
b0a3a6f79f
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
e373b46660
Jackson2JsonDecoder tolerates null literal
...
Fixes #22042
6 years ago
Rossen Stoyanchev
5dcde9e7d7
Trim decoded SSE data
...
Fixes #22043
6 years ago
Rossen Stoyanchev
ef72ef54fa
Avoid NPE when setting warnLogCategory
...
Fixes #22159
6 years ago
Rossen Stoyanchev
a77eee899a
Document synchronous use of the WebClient
...
Fixes #22173
6 years ago
Rossen Stoyanchev
f9ba069b9d
Add "Affects" field to issue template
6 years ago
Rossen Stoyanchev
4fdfa4246f
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
9837ec5904
Fix Javadoc typos
...
Closes #22261
6 years ago
Rossen Stoyanchev
2a57b40515
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
bdac937a43
Replace more references to issue tracker
...
Fixes #22254
6 years ago
Sanghyuk Jung
6ca3884759
Update links to issue tracker
6 years ago
Rossen Stoyanchev
ffe888ca18
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
189e1afc6e
Use try-with-resources in documentation samples
...
Fixes #22269
6 years ago
Rossen Stoyanchev
2043793899
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
d1862a26dd
Typo in web documentation
...
Fixes #22270
6 years ago
Brian Clozel
0450b07c21
Merge branch '5.1.x'
6 years ago
Brian Clozel
2b65d0e51f
Fix error when writing empty String to DataBuffer
...
Prior to this commit, `DataBuffer.write` would throw an
`IllegalStateException` when called with an empty `String`, since the
`CharsetEncoder` would be flushed on an incorrent state.
This commit skips entirely the encoding phase for empty `String`.
Fixes #22262
6 years ago
Stephane Nicoll
0db4c22656
Merge pull request #22256 from KyleRogers
...
* pr/22256:
Fix typo in cache abstraction chapter
6 years ago
Stefan Penndorf
04ce61968d
Fix typo in cache abstraction chapter
...
Closes gh-22256
6 years ago
Rossen Stoyanchev
7a9e2f5edc
Update issue template
...
Closes #22253
6 years ago
Rossen Stoyanchev
f557f313c2
Update issue template
6 years ago
Rossen Stoyanchev
2b530bac39
Update issue template
6 years ago
Rossen Stoyanchev
66359e2e9e
Update issue templates
6 years ago
Arjen Poutsma
5938ca9a7c
Deprecate JiBX marshaller
...
Resolves #22249
6 years ago