Update Javadoc regarding convention-based annotation attribute overrides

This commit updates the Javadoc in various places to reflect the fact
that support for convention-based annotation attribute overrides has
been removed.

See gh-28761
This commit is contained in:
Sam Brannen
2025-03-24 14:03:10 +01:00
parent d5bfd7ff8b
commit 02c7719eef
6 changed files with 20 additions and 26 deletions

View File

@@ -1356,7 +1356,9 @@ class AnnotationUtilsTests {
/**
* Mock of {@code org.springframework.web.bind.annotation.PostMapping}, except
* that the path is overridden by convention with single String element.
* that the path is intended to be overridden by convention with single String
* element. However, convention-based annotation attribute overrides are no
* longer supported as of Spring Framework 7.0.
*/
@Retention(RetentionPolicy.RUNTIME)
@WebMapping(method = RequestMethod.POST, name = "")