Sam Brannen
c0e8a36592
Polishing
...
(cherry picked from commit ed451c107f )
5 days ago
Sam Brannen
836289315d
Revise contribution
...
See gh-36022
(cherry picked from commit 452257eb96 )
5 days ago
Tran Ngoc Nhan
08b77dd0ad
Fix typos and grammar in reference manual
...
Closes gh-36022
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
(cherry picked from commit a7863a0877 )
5 days ago
Sam Brannen
c2f7cd3401
Convert sentence to tip in Kotlin testing chapter
...
This commit also moves the text to a more appropriate section of the
chapter.
(cherry picked from commit 24d152cdab )
3 weeks ago
Tran Ngoc Nhan
b39055f293
Fix broken Javadoc links to methods
...
Closes gh-35904
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
3 weeks ago
Sam Brannen
140933400d
Refer to "Spring Tools" instead of "Spring Tools for Eclipse"
...
Closes gh-35901
(cherry picked from commit 6504177e7b )
3 weeks ago
rstoyanchev
f9b4fba97a
Add required type to TypeMismatchException message args
...
Closes gh-35837
3 weeks ago
Sam Brannen
37e26e0377
Use current links to JUnit documentation
...
Closes gh-35892
(cherry picked from commit f4ee120a42 )
3 weeks ago
Sam Brannen
85c47a73dd
Fix formatting for backticks in Kotlin docs
...
(cherry picked from commit e625a28f6d )
3 weeks ago
Sam Brannen
ab93020263
Link to Spring Framework Artifacts wiki page
...
This commit revises the Integration Testing chapter to reference the
"Spring Framework Artifacts" wiki page instead of the nonexistent
"Dependency Management" section of the reference manual.
Closes gh-35890
(cherry picked from commit 45c1cd9295 )
3 weeks ago
Sam Brannen
e5de8b9bc6
Fix link to MockMvc test in HtmlUnit section
...
See gh-35853
(cherry picked from commit 9fe4e7798d )
4 weeks ago
Sam Brannen
e146e809e5
Polishing
...
(cherry picked from commit d178930186 )
4 weeks ago
Tran Ngoc Nhan
ff62e7355f
Fix cross-reference links in HtmlUnit sections
...
Closes gh-35853
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
(cherry picked from commit 91d2a51f3f )
4 weeks ago
rstoyanchev
e735c2d9c5
Improve Filter overview in reference docs
...
Closes gh-30454
1 month ago
Chandra Bhan Singh
ddb45a9302
Correct documentation formatting for Mono type
...
Closes gh-35786
Signed-off-by: Chandra Bhan Singh <cbhansingh1@gmail.com>
1 month ago
Brian Clozel
8bb63081a8
Document PathPattern matching for single/multiple segments
...
This commit improves the reference document to better reflect the
different between `*` or `{name}` on one side, and `**` or `{*path}` on
the other.
The former patterns only consider a single path segment and its content,
while the latter variants consider zero or more path segments. This
explains why `/test/{*path}` can match `/test`.
Closes gh-35727
1 month ago
rstoyanchev
a698b1bc0d
Refine validation section for controllers
...
Closes gh-35759
1 month ago
rstoyanchev
715bc68c16
Rename methods in FragmentsRendering
...
Previous commit 81ea35c726 in main for 7.0
should have been applied in 6.2.x first for 6.2.1.
This commit applies the changes in 6.2.x as intended,
effective as of 6.2.13.
Closes gh-33974
2 months ago
Elijah Mock
62f42cab6b
Fix minor typo in JDBC Core Classes documentation
...
This commit adds a missing closing parenthesis in an example.
Closes gh-35684
Signed-off-by: Elijah Mock <28277163+ekcom@users.noreply.github.com>
2 months ago
Brian Clozel
d3c1e678c2
Support wildcard path elements at the start of path patterns
...
Prior to this commit, the `PathPattern` and `PathPatternParser` would
allow multiple-segments matching and capturing with the following:
* "/files/**" (matching 0-N segments until the end)
* "/files/{*path}" (matching 0-N segments until the end and capturing
the value as the "path" variable)
This would be only allowed as the last path element in the pattern and
the parser would reject other combinations.
This commit expands the support and allows multiple segments matching at
the beginning of the path:
* "/**/index.html" (matching 0-N segments from the start)
* "/{*path}/index.html" (matching 0-N segments until the end and capturing
the value as the "path" variable)
This does come with additional restrictions:
1. "/files/**/file.txt" and "/files/{*path}/file.txt" are invalid,
as multiple segment matching is not allowed in the middle of the
pattern.
2. "/{*path}/files/**" is not allowed, as a single "{*path}" or "/**"
element is allowed in a pattern
3. "/{*path}/{folder}/file.txt" "/**/{folder:[a-z]+}/file.txt" are
invalid because only a literal pattern is allowed right after
multiple segments path elements.
Closes gh-35679
2 months ago
rstoyanchev
c165dd5e0e
Update Javadoc of reactive WebSocketHandler
...
Replace suggestion to use zip with and operator.
Closes gh-35572
2 months ago
Maziyar Bahramian
e1c008f5a3
Fix URI Patterns docs for WebMVC and WebFlux
...
Closes gh-35551
Signed-off-by: Maziyar Bahramian <maziyar.bahramian@gmail.com>
3 months ago
Sam Brannen
64d42fefda
Fix idref example in reference manual
...
Closes gh-35560
3 months ago
Sam Brannen
447cfa18e9
Polishing
3 months ago
rstoyanchev
977582fced
Document data binding for functional endpoints
...
Closes gh-35367
3 months ago
Sam Brannen
33fe8d29c1
Document potential need to use Mockito.doXxx() to stub a @MockitoSpyBean
...
Closes gh-35410
4 months ago
Sam Brannen
b741632e99
Polish wording in web sections
4 months ago
Tran Ngoc Nhan
cd208797e2
Fix links to Reactive Libraries and RestTemplate
...
Closes gh-35392
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
4 months ago
Daniel Garnier-Moiroux
ed7c3d737c
Fix broken link in WebDriver docs
...
Closes gh-35374
Signed-off-by: Daniel Garnier-Moiroux <git@garnier.wf>
4 months ago
Sam Brannen
19d5ec6781
Improve documentation for ApplicationEvents to clarify recommended usage
...
See gh-35335
4 months ago
Sam Brannen
5d214c2624
Polishing
4 months ago
Juergen Hoeller
a9453a5959
Polishing
4 months ago
rstoyanchev
6e2fbfe108
Polishing contribution
...
Closes gh-35232
4 months ago
秦利斌
968e037503
Add documentation of RequestMapping about SpEL
...
Signed-off-by: 秦利斌 <68638598+Allan-QLB@users.noreply.github.com>
4 months ago
Juergen Hoeller
a0c083619f
Consistent line breaks in reference documentation
5 months ago
Sam Brannen
983fdebdbb
Document how to register runtime hints for convention-based conversion
...
Closes gh-35178
5 months ago
Sam Brannen
e3445b17a7
Improve Conversion section of ref docs
5 months ago
Sam Brannen
40f9ac58d2
Further polishing of AOT section
5 months ago
Sam Brannen
95ad25ebf2
Polish AOT section of the reference docs
5 months ago
Juergen Hoeller
0bee65482f
Document actual status of orm.hibernate5 and Hibernate JPA support
...
See gh-35111
6 months ago
Sam Brannen
2477544a8f
Polishing
6 months ago
Tran Ngoc Nhan
abbd4ebcf6
Link to @ContextConfiguration Javadoc from reference manual
...
Closes gh-35088
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
6 months ago
rstoyanchev
c769f43b3e
Update docs on testing client code
...
Closes gh-34892
7 months ago
rstoyanchev
4782c697b8
Improve RestControllerAdvice documentation
...
Closes gh-34866
7 months ago
rstoyanchev
de52090959
Polishing contribution
...
Closes gh-34554
7 months ago
Jimmy Axenhus
fa781c8390
Correct name of Selenium WebDriver artifact
...
The selenium-htmlunit3-driver artifact does not exist.
Closes gh-34840
Signed-off-by: Jimmy Axenhus <github@axenhus.com>
7 months ago
rstoyanchev
be17315f63
Add mention of CompletionStage in "Async Requests"
...
Closes gh-34991
7 months ago
rstoyanchev
06f69915cb
Polishing contribution
...
Closes gh-34885
7 months ago
addoDev
d9459bdc74
Improve mvc-ann-async.adoc
...
Added section for WebAsyncTask return type along with java and
kotlin example code
See gh-34885
Signed-off-by: addoDev <adityaraochokkadi@gmail.com>
7 months ago
Johannes Jank
5b9cb8291e
Fix exception name in ModelAttribute docs
...
Closes gh-34980
Signed-off-by: Johannes Jank <johannes.wengert@googlemail.com>
7 months ago