Hi is it the best, if I need to trim what user sends in a form to trim it in ActionForm?
e.g:
I have MyActionForm class in which I have property
private String name;
public void setName(String name) {
if(name!=null) {
this.name = name.trim();
}
}
Or is there any other good way?
thx.