Annotation Interface InitBinder


@Documented @Target(METHOD) @Retention(RUNTIME) @Reflective public @interface InitBinder
Annotation that identifies methods which initialize the WebDataBinder which will be used for populating command and form object arguments of annotated handler methods.

WARNING: Data binding can lead to security issues by exposing parts of the object graph that are not meant to be accessed or modified by external clients. Therefore the design and use of data binding should be considered carefully with regard to security. For more details, please refer to the dedicated sections on data binding for Infra Web MVC and Infra WebFlux in the reference manual.

@InitBinder methods support all arguments that @RequestMapping methods support, except for command/form objects and corresponding validation result objects. @InitBinder methods must not have a return value; they are usually declared as void.

Typical arguments are WebDataBinder in combination with RequestContext or Locale, allowing to register context-specific editors.

从以下版本开始:
4.0 2022/4/8 22:49
作者:
Juergen Hoeller, Harry Yang
另请参阅:
  • 可选元素概要

    可选元素
    修饰符和类型
    可选元素
    说明
    The names of command/form attributes and/or request parameters that this init-binder method is supposed to apply to.
  • 元素详细资料

    • value

      String[] value
      The names of command/form attributes and/or request parameters that this init-binder method is supposed to apply to.

      Default is to apply to all command/form attributes and all request parameters processed by the annotated handler class. Specifying model attribute names or request parameter names here restricts the init-binder method to those specific attributes/parameters, with different init-binder methods typically applying to different groups of attributes or parameters.

      默认值:
      {}