Render the value of the specified bean property to the current JspWriter.
Retrieve the value of the specified bean property, and render it to the current JspWriter as a String by the ways:
format attribute exists then value will be formatted on base of format
string from format attribute and default system locale.format
attribute description) then value will be formatted on base of format string
from resources. Resources bundle and target locale can be specified with
bundle and locale attributes. If nothing specified then
default resource bundle and current user locale will be used.getAsText() method will be called.toString() conversions will be applied.When a format string is provided, numeric values are formatted using the
java.text.DecimalFormat class; if the format string came from
a resource, the applyLocalisedPattern() method is used, and
applyPattern() is used otherwise. Dates are formatted using
the SimpleDateFormat class. For details of the specific format
patterns, please see the Javadocs for those classes.
If a problem occurs while retrieving the specified bean property, a request time exception will be thrown.
|
|