Have you tried using SpEL ? Something like this is possible:
<constructor-arg index="1" value="#{'${data.url}'==null?'':'${data.url}'}"/>
Update
I just remembered that there is an easier way (as is well described here ). Try:
<constructor-arg index="1" value="${data.url:''}"/>
Marcel stΓΆr
source share