Spring Expression Language 简明教程
Spring SpEL - Mathematical Operators
SpEL 表达式支持数学运算符,例如 +、-、* 等。
以下示例显示了各种使用案例。
Example
让我们更新在 Spring SpEL - Create Project 章节创建的项目。我们添加/更新了以下文件:
-
MainApp.java - 要运行和测试的主应用。
以下 MainApp.java 文件的内容:
package com.tutorialspoint;
import java.text.ParseException;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
public class MainApp {
public static void main(String[] args) throws ParseException {
ExpressionParser parser = new SpelExpressionParser();
// evaluates to 5
int result = parser.parseExpression("3 + 2").getValue(Integer.class);
System.out.println(result);
// evaluates to 1
result = parser.parseExpression("3 - 2").getValue(Integer.class);
System.out.println(result);
// evaluates to 6
result = parser.parseExpression("3 * 2").getValue(Integer.class);
System.out.println(result);
// evaluates to 1
result = parser.parseExpression("3 / 2").getValue(Integer.class);
System.out.println(result);
// evaluates to 1
result = parser.parseExpression("3 % 2").getValue(Integer.class);
System.out.println(result);
// follow operator precedence, evaluate to -9
result = parser.parseExpression("1+2-3*4").getValue(Integer.class);
System.out.println(result);
}
}