Spring Expression Language 简明教程

Spring SpEL - Literal Expression

SpEL 表达式支持以下类型的文本常量 -

  1. Strings - 单引号分隔的字符串。要使用单引号,请在其周围加上另一个单引号。

  2. Numeric - 支持 int、real 和 hex 表达式。

  3. boolean

  4. null

以下示例显示了各种使用案例。

Example

让我们更新在 Spring SpEL - Create Project 章节创建的项目。我们添加/更新了以下文件:

  1. MainApp.java - 要运行和测试的主应用。

以下 MainApp.java 文件的内容:

package com.tutorialspoint;

import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;

public class MainApp {
   public static void main(String[] args) {
      ExpressionParser parser = new SpelExpressionParser();

      // parse a simple text
      String message = (String) parser.parseExpression("'Tutorialspoint'").getValue();
      System.out.println(message);

      // parse a double from exponential expression
      double avogadros  = (Double) parser.parseExpression("6.0221415E+23").getValue();
      System.out.println(avogadros);

      // parse an int value from Hexadecimal expression
      int intValue = (Integer) parser.parseExpression("0x7FFFFFFF").getValue();
      System.out.println(intValue);

      // parse a boolean
      boolean booleanValue = (Boolean) parser.parseExpression("true").getValue();
      System.out.println(booleanValue);

      // parse a null object
      Object nullValue = parser.parseExpression("null").getValue();
      System.out.println(nullValue);
   }
}

Output

Tutorialspoint
6.0221415E23
2147483647
true
null