类 CompositeStringExpression

  • 所有已实现的接口:
    Expression

    public class CompositeStringExpression
    extends Object
    implements Expression
    Represents a template expression broken into pieces. Each piece will be an Expression but pure text parts to the template will be represented as LiteralExpression objects. An example of a template expression might be:
     "Hello ${getName()}"
     
    which will be represented as a CompositeStringExpression of two parts. The first part being a LiteralExpression representing 'Hello ' and the second part being a real expression that will call getName() when invoked.
    从以下版本开始:
    3.0
    作者:
    Andy Clement, Juergen Hoeller