org.springframework.web.bind.support
Interface WebDataBinderFactory
- All Known Implementing Classes:
- DefaultDataBinderFactory, InitBinderDataBinderFactory, ServletRequestDataBinderFactory
public interface WebDataBinderFactory
A factory for creating a WebDataBinder
instance for a named target object.
- Since:
- 3.1
- Author:
- Arjen Poutsma
createBinder
WebDataBinder createBinder(NativeWebRequest webRequest,
Object target,
String objectName)
throws Exception
- Create a
WebDataBinder
for the given object.
- Parameters:
webRequest
- the current requesttarget
- the object to create a data binder for, or null
if creating a binder for a simple typeobjectName
- the name of the target object
- Returns:
- the created
WebDataBinder
instance, never null
- Throws:
Exception
- raised if the creation and initialization of the data binder fails