In my application, I am using JSF and Java Web Services. When any of my web-service functions return a null
value, it is always expressed as a "null" string. As a consequence, I cannot use EL expressions like #{empty object}
to test for null
values or empty strings.
I'd like to ask if there's a way to configure such that Java Web Services will return null
value as an empty string OR JSF/EL can understand "null" string as null
value.