WebDataBinder « MVC « Spring Q&A





1. Problems with WebDataBinder and Set.Class    stackoverflow.com

i am having trouble with binding my data from a form : I have two class

@Entity
@Table(name = "ROLES")
public class Role implements GenericDomain {

private Long    id;
private String  code;
private String ...

2. WebDataBinder registerCustomEditor doesn't work    stackoverflow.com

Running Spring 3.0.6 Trying to register a customEditor to a binder, so that a null date object is saved when an empty string is passed. What seems like the preferred approach ...