This might be just as painful but I would change my getter methods to check
for null and return "" instead.
public String getFoo(){
if (foo == null) {
return "";
} else {
return foo;
}
}
> -----Original Message-----
> From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]
> Sent: Monday, February 23, 2004 2:46 AM
> To: [EMAIL PROTECTED]
> Subject: REPOST: How to avoid <bean:write>to print null on the
> screen
>
>
>
>
> Hi,
>
>
> I am using <bean:write> in a lot of places in my jsp's, Whenever the
> form bean property is null It prints "null" on the screen, I was hoping
> if there could be some way in which I can force all null values to be
> printed as "" in my jsp's. I have tried giving initial="" in my form
> property but If my Data Holder object contains null and I set it to the
> form bean then it still prints null.
>
>
>
> I know one way of achieving this is using <logic:present> every where
> but that's a huge amount change in jsp's we have 150 of them, If anybody
> can suggest a shortcut It would be of a great help
>
>
> Any help is greatly appreciated
>
>
>
> Regards
>
>
> Anant
>
>
>
>
>
>
> Confidentiality Notice
>
>
> The information contained in this electronic message and any attachments
> to this message are intended for the exclusive use of the addressee(s)
> and may contain confidential or privileged information. If you are not
> the intended recipient, please notify the sender at Wipro or
> [EMAIL PROTECTED] immediately and destroy all copies of this message
> and any attachments.
>
> Confidentiality Notice
>
>
> The information contained in this electronic message and any attachments
> to this message are intended
> for the exclusive use of the addressee(s) and may contain confidential or
> privileged information. If
> you are not the intended recipient, please notify the sender at Wipro or
> [EMAIL PROTECTED] immediately
> and destroy all copies of this message and any attachments.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]