|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BindInitializer
Callback that allows for initialization of a binder with custom editors before kicking off the binding process.
This is effectively a way to factor binder initialization out into
a dedicated object, to be invoked through BindUtils. In all other
respects, it is equivalent to the initBinder
template
method defined by the BaseCommandController class.
ServletRequestDataBinder
,
PropertyEditorRegistrar
Method Summary | |
---|---|
void |
initBinder(ServletRequest request,
ServletRequestDataBinder binder)
Deprecated. Initialize the given binder instance, e.g. with custom editors. |
Method Detail |
---|
void initBinder(ServletRequest request, ServletRequestDataBinder binder) throws ServletException
BindUtils.bind
.
This method allows you to register custom editors for certain fields of your command class. For instance, you will be able to transform Date objects into a String pattern and back, in order to allow your JavaBeans to have Date properties and still be able to set and display them in, for instance, an HTML interface.
request
- current requestbinder
- new binder instance
ServletException
- in case of invalid state or argumentsDataBinder.registerCustomEditor(java.lang.Class, java.beans.PropertyEditor)
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |