English 中文(简体)
Spring SpEL - Ternary Operator
  • 时间:2024-09-17

Spring SpEL - Ternary Operator


Previous Page Next Page  

SpEL expression supports ternary operator to perform if-then-else logic.

Following example shows the various use cases.

Example

Let s update the project created in Spring SpEL - Create Project chapter. We re adding/updating following files −

    MainApp.java − Main apppcation to run and test.

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;

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

      String result = parser.parseExpression("true ?  Yes  :  No ").getValue(String.class);
      System.out.println(result);

      result = parser.parseExpression("false ?  Yes  :  No ").getValue(String.class);
      System.out.println(result);
   }
}

Output


Yes
No
Advertisements