Stephane Nicoll
68246dc72c
Initiate Ahead of Time chapter
...
See gh-29350
2022-10-20 10:13:05 +02:00
rstoyanchev
d4f7484252
Add Builder to RSocketServiceProxyFactory
...
RSocketServiceProxyFactory now support programmatic initialization
through a builder, while bean-style initialization is deprecated.
Closes gh-29296
2022-10-19 14:36:45 +01:00
rstoyanchev
5cb3af708c
Add Builder to HttpServiceProxyFactory
...
HttpServiceProxyFactory now support programmatic initialization through
a builder, while bean-style initialization is deprecated.
See gh-29296
2022-10-17 12:23:58 +01:00
Sébastien Deleuze
581fa1419f
Merge branch '5.3.x'
2022-10-16 20:32:52 +02:00
Sébastien Deleuze
1439c5bb8f
Document how to use WebJars without webjars-locator-core dependency
...
Closes gh-29322
2022-10-16 20:28:57 +02:00
Arjen Poutsma
dedcb19f44
Document PartEvent API
...
Closes #29170
2022-10-11 16:28:41 +02:00
rstoyanchev
cf2b1020f4
Update table of supported controller method return types
...
Closes gh-28814
2022-10-11 15:10:30 +01:00
rstoyanchev
04f0f1ddb0
Update table of supported controller method return types
...
See gh-27052
2022-10-11 14:38:38 +01:00
Sam Brannen
b3afafbf5a
Merge branch '5.3.x'
2022-10-07 18:02:25 +02:00
Sam Brannen
a599601dd9
Document how to switch to the default set of TestExecutionListeners
...
Closes gh-29281
2022-10-07 17:58:22 +02:00
Iain Henderson
b8243e6f84
Support CBOR and Protobuf with Kotlin Serialization
...
This commit introduces support for CBOR and Protobuf using Kotlin
serialization. Support comes in the form of Encoder/Decoder as well
as HttpMessageConverters. Seperate abstract base classes supply support
for binary and string (de)serialization.
The exising JSON codecs and message converters have been migrated to
use the new base classes.
Closes gh-27628
2022-10-06 13:51:50 +02:00
rstoyanchev
b6c2e8de23
Support context propagation for Spring MVC controllers
...
Closes gh-29056
2022-10-06 12:43:54 +01:00
rstoyanchev
6b0f29a065
Document i8n for RFC 7807 problem details
...
Expand the documentation for error responses and add details on
using a MessageSource to customize and internationalize error details.
See gh-28814
2022-10-05 14:02:42 +01:00
rstoyanchev
75dea98811
Revise docs on RFC 7807
...
See gh-28814
2022-10-05 14:02:42 +01:00
rstoyanchev
9eaae0fe04
Polishing contribution and Theme deprecation notices
...
Closes gh-28870
2022-09-28 16:22:45 +01:00
Brian Clozel
e8d24ae693
Fix HTTP interface section title in ref docs
2022-09-26 13:39:51 +02:00
Stephane Nicoll
5275be3adf
Merge branch '5.3.x'
2022-09-26 08:50:58 +02:00
inaba jun
ddef70935a
Fix MockMvc sample setup
...
See gh-29201
2022-09-26 08:50:01 +02:00
rstoyanchev
74df50c906
Polishing ProblemDetail Javadoc
2022-09-23 16:54:02 +01:00
Brian Clozel
3e41d7f23e
Remove extra asciidoctor configuration
...
See gh-29162
2022-09-19 13:00:42 +02:00
Sam Brannen
b87d48b99b
Merge branch '5.3.x'
2022-09-14 17:18:00 +02:00
Marc Wrobel
ce49068ff9
Fix links in Javadoc and reference docs
...
- Fix broken links (by using a new URL, an alternative URL, or a
Wayback Machine link)
- Use HTTPS where possible
- Remove https://issuetracker.springsource.com/browse/EBR-349 : this
link is dead and is also mentioned in
https://jira.spring.io/browse/SPR-8093
- Clean up nohttp allowlist.lines
Closes gh-28876
2022-09-14 17:00:11 +02:00
Sam Brannen
8d92c57777
Merge branch '5.3.x'
...
# Conflicts:
# spring-tx/src/main/java/org/springframework/jca/cci/core/support/CciDaoSupport.java
2022-09-14 16:52:55 +02:00
Marc Wrobel
92a231cf91
Fix typos in Javadoc, reference docs, and code
...
Closes gh-28822
2022-09-14 16:45:34 +02:00
rstoyanchev
c854e35c9d
Merge branch '5.3.x'
2022-09-12 12:27:31 +01:00
Napster
d42f950a36
Pass headers to STOMP receipt callbacks
...
See gh-28715
2022-09-12 10:55:12 +01:00
jbotuck
597c687da8
Fix indentation in ref docs for RestTemplate
...
Closes gh-29014
2022-09-12 09:51:33 +01:00
rstoyanchev
f669e957a9
Polishing
2022-09-07 17:38:31 +01:00
rstoyanchev
fdfa7cbae6
Add docs for RSocket interface client
...
Closes gh-24456
2022-09-07 15:01:40 +01:00
Stephane Nicoll
3b36171926
Merge branch '5.3.x'
2022-09-05 07:24:07 +02:00
heqiang
111a9902ac
Fix typo in data-access section
...
See gh-29048
2022-09-05 07:21:31 +02:00
Arjen Poutsma
9c33d2707a
Introduce support for Netty 5 Buffer
...
This commit introduces support for Netty 5's Buffer, in the form of
Netty5DataBuffer. Because of the new API offered by Buffer, several
changes have been made to the DataBuffer API:
- CloseableDataBuffer is a simpler alternative to PooledDataBuffer, and
implemented by Netty5DataBuffer. DataBufferUtils::release can now
handle CloseableDataBuffer as well as PooledDataBuffer.
- PooledDataBuffer::touch has been moved into a separate interface:
TouchableDataBuffer, which is implemented by Netty5DataBuffer.
- The capacity of DataBuffers can no longer be reduced, they can only
grow larger. As a consequence, DataBuffer::capacity(int) has been
deprecated, but ensureWritable (formally ensureCapacity) still exists.
- DataBuffer::slice and retainedSlice have been deprecated in favor of
split, a new method that ensures that memory regions do not overlap.
- DataBuffer::asByteBuffer has been deprecated in favor of toByteBuffer,
a new method that returns a copy, instead of shared data.
- DataBufferFactory::allocateBuffer has been deprecated in favor of
allocateBuffer(int).
Closes gh-28874
2022-08-25 11:00:22 +02:00
Stephane Nicoll
496b1879ab
Merge branch '5.3.x'
2022-08-09 15:32:27 +02:00
Andy Wilkinson
d6b60046ce
Correct description of @RequestParam with WebFlux
...
See gh-28944
2022-08-09 15:30:08 +02:00
Vedran Pavic
7e719fe3f8
Use Jakarta EE XML namespaces instead of Java EE
...
Closes gh-28903
2022-08-04 13:24:30 +02:00
Brian Clozel
9e71889ed9
Merge branch '5.3.x'
2022-08-04 11:02:52 +02:00
Chanhyeong Cho
8685b2f5bf
Fix broken kdoc-api links in kotlin.adoc
...
Fixes gh-28908
2022-08-04 11:02:02 +02:00
Stephane Nicoll
1bdb67cda9
Merge branch '5.3.x'
2022-07-29 17:13:52 +02:00
Stephane Nicoll
982d8ea84a
Polish "Clarify docs on JNDI properties in Servlet environment"
...
See gh-28488
2022-07-29 17:09:55 +02:00
Arend v. Reinersdorff
67eb2bbf19
Clarify docs on JNDI properties in Servlet environment
...
See gh-28488
2022-07-29 17:05:58 +02:00
Arjen Poutsma
e0190c12d4
Merge branch '5.3.x'
2022-07-29 11:10:09 +02:00
Arjen Poutsma
3d4a778b73
Fix KDoc API link
2022-07-29 11:08:57 +02:00
Stephane Nicoll
75c63f877b
Merge branch '5.3.x'
2022-07-25 13:33:06 +02:00
arvyy
4383a673bb
Add missing closing parenthesis
...
See gh-28867
2022-07-25 13:30:45 +02:00
Sébastien Deleuze
c0bea373a2
Merge branch '5.3.x'
2022-07-19 10:19:00 +02:00
Jupiter
7fa9f1c9cf
Fix broken link to rsocket protocol page
...
Closes gh-28817
2022-07-19 10:14:46 +02:00
rstoyanchev
f814fb420b
Merge branch '5.3.x'
2022-07-13 19:21:33 +01:00
rstoyanchev
cdd4e8cd7f
Improve regex support for URL path matching
...
Closes gh-28815
2022-07-13 18:43:51 +01:00
Sam Brannen
0b5c5dbc31
Merge branch '5.3.x'
2022-07-13 15:13:41 +02:00
Marc Wrobel
165fba868c
Fix typos in reference docs
...
Closes gh-28805
2022-07-13 15:12:31 +02:00