null to empty string
i was wondering if JSP has something like converting all null String into
an empty string to be display on the page input fields
currently, i have to do something like
public String emptyString(String s){
return (s ==null)?"": s;
}
i was hoping JSP have something that will do this automatically for you..

