Example usage for org.springframework.web.bind WebDataBinder getObjectName

List of usage examples for org.springframework.web.bind WebDataBinder getObjectName

Introduction

In this page you can find the example usage for org.springframework.web.bind WebDataBinder getObjectName.

Prototype

public String getObjectName() 

Source Link

Document

Return the name of the bound object.

Usage

From source file:sample.contact.web.AddDeleteContactController.java

@InitBinder
public void initBinder(WebDataBinder binder) {
    System.out.println("A binder for object: " + binder.getObjectName());
}