File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
spring-webmvc/src/main/java/org/springframework/web/servlet/function Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -156,9 +156,10 @@ default Optional<Object> attribute(String name) {
156
156
Map <String , Object > attributes ();
157
157
158
158
/**
159
- * Get the first query parameter with the given name, if present.
159
+ * Get the first parameter with the given name, if present.
160
160
* @param name the parameter name
161
161
* @return the parameter value
162
+ * @see HttpServletRequest#getParameter(String)
162
163
*/
163
164
default Optional <String > param (String name ) {
164
165
List <String > paramValues = params ().get (name );
@@ -175,7 +176,8 @@ default Optional<String> param(String name) {
175
176
}
176
177
177
178
/**
178
- * Get all query parameters for this request.
179
+ * Get all parameters for this request.
180
+ * @see HttpServletRequest#getParameterMap()
179
181
*/
180
182
MultiValueMap <String , String > params ();
181
183
You can’t perform that action at this time.
0 commit comments