Spring SpEL - 文字表达
SpEL 表达式支持以下类型的文字 −
Strings − 单引号分隔的字符串。 要使用单引号,请在其周围加上另一个单引号。
Numeric − 支持 int、real 和 hex 表达式。
boolean
null
以下示例显示了各种用例。
示例
让我们更新在 Spring SpEL - 创建项目 章节中创建的项目。 我们正在添加/更新以下文件 −
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);
}
}
输出
Tutorialspoint 6.0221415E23 2147483647 true null