
- Spring SpEL - Home
- Spring SpEL - Overview
- Spring SpEL - Environment Setup
- Spring SpEL - Create Project
- Spring SpEL - Literal Expression
- Spring SpEL - Properties
- Spring SpEL - Array
- Spring SpEL - List
- Spring SpEL - Map
- Spring SpEL - Methods
- Spring SpEL - Relational Operators
- Spring SpEL - Logical Operators
- Spring SpEL - Mathematical Operators
- Spring SpEL - Assignment Operator
- Spring SpEL - Constructor
- Spring SpEL - Variables
- Spring SpEL - Functions
- Spring SpEL - Expression Templating
Spring SpEL Expression Evaluation
Spring SpEL Bean Configuration
Spring SpEL Language Reference
Spring SpEL Operators
Spring SpEL Special Operators
Spring SpEL Collections
Spring SpEL Other Features
Spring SpEL - Useful Resources
Spring SpEL - Mathematical Operators
SpEL expression supports mathematical operators like +, -, * etc.
Following example shows the various use cases.
Example - Usage of Mathematical Operators in SpEL
Let's update the project created in Spring SpEL - Create Project chapter. We're updating following file −
MainApp.java − Main application to run and test.
MainApp.java
Here is the content of MainApp.java file −
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); } }
Output
Once you are done creating the source and bean configuration files, let us run the application. If everything is fine with your application, it will print the following message −
5 1 6 1 1 -9
Advertisements