File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
spring-web/src/main/java/org/springframework/web/bind/annotation Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
29
29
* variable. Supported for {@link RequestMapping} annotated handler methods in Servlet
30
30
* environments.
31
31
*
32
- * <p>If the method parameter is {@link java.util.Map Map<String, String>} or
33
- * {@link org.springframework.util.MultiValueMap MultiValueMap<String, String>}
32
+ * <p>If the method parameter is {@link java.util.Map Map<String, String>}
34
33
* then the map is populated with all path variable names and values.
35
34
*
36
35
* @author Arjen Poutsma
37
36
* @author Juergen Hoeller
38
37
* @since 3.0
39
38
* @see RequestMapping
40
39
* @see org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter
41
- * @see org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter
42
40
*/
43
41
@ Target (ElementType .PARAMETER )
44
42
@ Retention (RetentionPolicy .RUNTIME )
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2015 the original author or authors.
2
+ * Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
37
37
* @see RequestHeader
38
38
* @see ResponseBody
39
39
* @see org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter
40
- * @see org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter
41
40
*/
42
41
@ Target (ElementType .PARAMETER )
43
42
@ Retention (RetentionPolicy .RUNTIME )
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
329
329
/**
330
330
* In a Servlet environment only: the path mapping URIs (e.g. "/myPath.do").
331
331
* Ant-style path patterns are also supported (e.g. "/myPath/*.do").
332
- * At the method level, relative paths (e.g. "edit.do") are supported within
333
- * the primary mapping expressed at the type level. Path mapping URIs may
334
- * contain placeholders (e.g. "/${connect}")
332
+ * At the method level, relative paths (e.g. "edit.do") are supported
333
+ * within the primary mapping expressed at the type level.
334
+ * Path mapping URIs may contain placeholders (e.g. "/${connect}").
335
335
* <p><b>Supported at the type level as well as at the method level!</b>
336
336
* When used at the type level, all method-level mappings inherit
337
337
* this primary mapping, narrowing it for a specific handler method.
You can’t perform that action at this time.
0 commit comments