From 0d12b84022b90614531c92772b09e49343d0c492 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 8 Mar 2016 13:58:57 +0100 Subject: [PATCH] Document single element annotation attribute overrides in "What's New" Issue: SPR-13972 --- src/asciidoc/whats-new.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/asciidoc/whats-new.adoc b/src/asciidoc/whats-new.adoc index 1f31b6df8e..4dda5d784c 100644 --- a/src/asciidoc/whats-new.adoc +++ b/src/asciidoc/whats-new.adoc @@ -634,6 +634,10 @@ public @interface MyTestConfig { * `@Configuration` classes support constructor injection. * Any SpEL expression used to specify the `condition` of an `@EventListener` can now refer to beans (i.e. `@beanName.method()`). +* _Composed annotations_ can now override array attributes in meta-annotations + with a single element of the component type of the array. For example, the + `String[] path` attribute of `@RequestMapping` can be overridden with + `String path` in a composed annotation. === Data Access Improvements