public class BeanWrapperExpressionParser extends AbstractExpressionParser
Constructor and Description |
---|
BeanWrapperExpressionParser()
Creates a new expression parser that uses a
DefaultConversionService to perform type conversion. |
BeanWrapperExpressionParser(ConversionService conversionService)
Creates a new expression parser that uses the specified conversion service for type conversion.
|
Modifier and Type | Method and Description |
---|---|
protected Expression |
doParseExpression(java.lang.String expressionString,
ParserContext context) |
ConversionService |
getConversionService()
The conversion service to use to obtain
conversion executors that will be adapted to
property editors for use during a
set value call. |
void |
setAutoGrowCollectionLimit(int autoGrowCollectionLimit)
Specify a limit for array and collection auto-growing.
|
void |
setAutoGrowNestedPaths(boolean autoGrowNestedPaths)
Set whether this BeanWrapper should attempt to "auto-grow" a nested path that contains a null value.
|
void |
setConversionService(ConversionService conversionService)
Sets the conversion service to use to obtain
conversion executors that will be adapted
to property editors for use during a
set value call. |
getAllowDelimitedEvalExpressions, getExpressionPrefix, getExpressionSuffix, parseExpression, parseVariableExpressions, setAllowDelimitedEvalExpressions, setExpressionPrefix, setExpressionSuffix
public BeanWrapperExpressionParser()
DefaultConversionService
to perform type conversion.public BeanWrapperExpressionParser(ConversionService conversionService)
conversionService
- the conversion service to usepublic ConversionService getConversionService()
conversion executors
that will be adapted to
property editors
for use during a
set value
call. The default if not specified is an
instance of DefaultConversionService
.public void setConversionService(ConversionService conversionService)
conversion executors
that will be adapted
to property editors
for use during a
set value
call.conversionService
- the conversion servicepublic void setAutoGrowNestedPaths(boolean autoGrowNestedPaths)
If "true", a null path location will be populated with a default object value and traversed
instead of resulting in a NullValueInNestedPathException
. Turning this flag on also
enables auto-growth of collection elements when accessing an out-of-bounds index.
Default is "false" on a plain BeanWrapper.
public void setAutoGrowCollectionLimit(int autoGrowCollectionLimit)
Default is unlimited on a plain BeanWrapper.
protected Expression doParseExpression(java.lang.String expressionString, ParserContext context) throws ParserException
doParseExpression
in class AbstractExpressionParser
ParserException