You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerAdapter.java
+16-21Lines changed: 16 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -114,23 +114,26 @@
114
114
importorg.springframework.web.util.WebUtils;
115
115
116
116
/**
117
-
* Implementation of the {@link org.springframework.web.servlet.HandlerAdapter} interface that maps handler methods
118
-
* based on HTTP paths, HTTP methods and request parameters expressed through the {@link RequestMapping} annotation.
117
+
* Implementation of the {@link org.springframework.web.servlet.HandlerAdapter} interface
118
+
* that maps handler methods based on HTTP paths, HTTP methods and request parameters
119
+
* expressed through the {@link RequestMapping} annotation.
119
120
*
120
-
* <p>Supports request parameter binding through the {@link RequestParam} annotation. Also supports the {@link
121
-
* ModelAttribute} annotation for exposing model attribute values to the view, as well as {@link InitBinder} for binder
122
-
* initialization methods and {@link SessionAttributes} for automatic session management of specific attributes.
121
+
* <p>Supports request parameter binding through the {@link RequestParam} annotation.
122
+
* Also supports the {@link ModelAttribute} annotation for exposing model attribute
123
+
* values to the view, as well as {@link InitBinder} for binder initialization methods
124
+
* and {@link SessionAttributes} for automatic session management of specific attributes.
123
125
*
124
-
* <p>This adapter can be customized through various bean properties. A common use case is to apply shared binder
125
-
* initialization logic through a custom {@link #setWebBindingInitializer WebBindingInitializer}.
126
+
* <p>This adapter can be customized through various bean properties.
127
+
* A common use case is to apply shared binder initialization logic through
128
+
* a custom {@link #setWebBindingInitializer WebBindingInitializer}.
0 commit comments