From 26326fb40b8d680688155a182fbcd999338478d1 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 22 Sep 2014 17:57:22 +0200 Subject: [PATCH] Mention DEFAULT_NONE in @RequestMapping's Javadoc This change mentions `ValueConstants.DEFAULT_NONE` in @RequestMapping's Javadoc, in order to explain the default value. Issue: SPR-9967 --- .../org/springframework/web/bind/annotation/RequestMapping.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java index a5d60b6dba6..03b27a79a39 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java @@ -288,6 +288,7 @@ public @interface RequestMapping { *

Supported at the type level as well as at the method level! * When used at the type level, all method-level mappings inherit * this primary mapping, narrowing it for a specific handler method. + * @see org.springframework.web.bind.annotation.ValueConstants.DEFAULT_NONE */ String[] value() default {};